<!--
function ValidateContactForm(thisform) {
if (thisform.txtName.value == "")
{
    alert("Please enter your name");
    thisform.txtName.focus();
    return (false)
}
if (thisform.txtEmailAddress.value == "")
{
    alert("You must enter an e-mail address!");
    thisform.txtEmailAddress.focus();
    return (false)
}
var okEmail = thisform.txtEmailAddress.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (okEmail){
    ok = true;
} 
 else {
    alert('Please enter a valid e-mail address.');
    thisform.txtEmailAddress.focus();
    return (false);
} 
if (thisform.txtMessage.value == "")
{
    alert("Unless you enter something in the message field I will not know what your inquiry is about.");
    thisform.txtMessage.focus();
    return (false)
}
ok = true;
return true;
} 
