//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
	function printmto(domain,address,tld)
	{
		document.write("<a href=\"mailto");
  		document.write(":" + address + "@");
		document.write( domain + "\">" + address + "@" + domain + "." + tld +  "<\/a>");
	}
	
	function printm2(domain,address,tld)
	{
		document.write("<a href=\"mailto");
  		document.write(":" + address + "@");
		document.write( domain + "\">");
	}