//<!--
// 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 SendMail(ToAddress)
{
	var sBrokenAddress ;
	sBrokenAddress = "mai" ;
	sBrokenAddress += "lto" ;
	sBrokenAddress += ":" ;
	sBrokenAddress += "swayne" ;
	sBrokenAddress += "@" ;
	sBrokenAddress += "free" ;
	sBrokenAddress += "shell" ;
	sBrokenAddress += "." ;
	sBrokenAddress += "org" ;
	
	window.location.href = sBrokenAddress ;
}

//-->
