function flashPutHref(href) 
	{ 
		location.href = href;
		document.getElementById("url").href = href;
		//alert(href);		
	}
function flashPutTitle(title) 
	{
		document.title = title; 
	}
	
function noSpam(user,domain)
	{
		alert(user);
		locationstring = "mailto:" + user + "@" + domain;
		window.location = locationstring;
	}
	
function init() 
{
	var link=document.getElementById('noSpam');
	link.onclick=function()
	{
		noSpam('chad', 'chadbatka.com')
	};

}

window.onload=function()
{
 init();
}