//<!--
// 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 += "info" ;
	sBrokenAddress += "@" ;
	sBrokenAddress += "bald" ;
	sBrokenAddress += "man" ;
	sBrokenAddress += "." ;
	sBrokenAddress += "org" ;
	sBrokenAddress += "." ;
	sBrokenAddress += "uk" ;
	
	window.location.href = sBrokenAddress ;
}

//-->
