function getUrl(url)
{
    document.location.href = url;
}

function singleFlip(span_id)
{
    display = ( document.getElementById( span_id ).className == 'hide' ) ? 'show' : 'hide';
    document.getElementById( span_id ).className = display;
    return false;
}
function reLocate(url){
	url=url;
	document.location=url;	
}
function eMail(caller){
	rcpt='foo';
	fqdn='2foos.com';
	subject='tell%20me%20about%20foo';
	url='mailto:' + rcpt + '@' + fqdn + '?subject=' + subject;
	caller.href=url;
}