function popMail(host,user) {
	var acct = user +'@'+ host;
	self.location.href = 'mailto:'+ acct;
}
function linkMail(host,user,cls) {
	document.write('<a href="javascript:popMail(\''+ host +'\',\''+ user +'\');"');
	if (cls) {
		document.write(' class="'+ cls +'"');
	}
	document.write('>');
	showMail(host,user);
	document.write('</a>');
}
function showMail(host,user) {
	var acct = user +'@'+ host;
	document.write(acct);
}

function googleMapIframe(iframe_src,link_href)
{
	//var iframe = '<iframe width="560" height="275" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' + src + '"></iframe>';
	var iframe = '<iframe width="560" height="275" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' + iframe_src + '"></iframe><br /><small><a href="' + link_href + '" style="color:#0000FF;text-align:left">View Larger Map</a></small>';
	document.write(iframe);
	
	//http://maps.google.com/maps?hl=en&amp;client=firefox-a&amp;q=5001+Great+America+Pkwy,+Santa+Clara,+CA+95054,+USA&amp;ie=UTF8&amp;s=AARTsJpYgxh8947hYgeZClgHHIOL5v138Q&amp;ll=37.412437,-121.973906&amp;spn=0.023861,0.036478&amp;z=14&amp;iwloc=addr&amp;output=embed
}

function changeBackground()
{
	$('body').setStyle({backgroundImage: "url(/wp-content/themes/circ/images/body/background_vid.gif)"})
}
