function FormatELink(name, domain, text)
{
	var strE = "<";
	strE += "a";
	strE += " href=";
	strE += "mail";
	strE += "to:";
	strE += name + "@" + domain + ">" + text + "</a>";
	document.write(strE);
}

function load()
{
}

if (window.addEventListener)
{   
	window.addEventListener('onload', load, false);    
} else if (window.attachEvent) 
{   
	window.attachEvent('onload', load, false);   
}  

