//<!--
// This function is used to try to avoid spamming from e-mail spiders
//   Modify the MyDomain name to your website keeping in mind that
//   breaking up the name will further hide the email address
function SMM(ToAddress,ToDomain,Subj)
{
	var sBrokenAddress ;
	sBrokenAddress = "mai" ;
	sBrokenAddress += "lto" ;
	sBrokenAddress += ":" ;
	sBrokenAddress += ToAddress ;
	sBrokenAddress += "@" ;
	sBrokenAddress += ToDomain;
	sBrokenAddress += "?subject=";
	sBrokenAddress += Subj
	
	window.location.href = sBrokenAddress ;
}
//-->

