//<!--
// 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 AlegreMail(ToAddress)
{
	var sBrokenAddress ;
	sBrokenAddress += ToAddress ;
	sBrokenAddress += "@" ;
	sBrokenAddress += "alegre-" ;
	sBrokenAddress += "design" ;
	sBrokenAddress += "." ;
	sBrokenAddress += "com" ;
	
	window.location.href = sBrokenAddress ;	
	
}

//-->
