<!--
function ValidateEmailContact(frm){
	if (Trim(frm.SenderName.value)==""){alert("Please fill in the Name field.");frm.SenderName.focus();return false;}
	else if (Trim(frm.SenderEmail.value)==""){alert("Please fill in the E-mail field.");frm.SenderEmail.focus();return false;}
	else if (!ValidateEmail(Trim(frm.SenderEmail.value))){alert("Please fill in the E-mail field, using a valid e-mail address.");frm.SenderEmail.focus();return false;}
	else if (Trim(frm.Message.value)==""){alert("Please enter your message.");frm.Message.focus();return false;}
	else return true;
}
//-->