//<!--
// 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 SM(ToAddress)
{
	var sBrokenAddress ;
	sBrokenAddress = "mai" ;
	sBrokenAddress += "lto" ;
	sBrokenAddress += ":" ;
	sBrokenAddress += ToAddress ;
	sBrokenAddress += "@" ;
	sBrokenAddress += "As" ;
	sBrokenAddress += "se" ;
	sBrokenAddress += "ssor" ;	
	sBrokenAddress += "Pro" ;	
	sBrokenAddress += "." ;
	sBrokenAddress += "com" ;
	
	window.location.href = sBrokenAddress ;
}
//-->
