// behind the scenes form validation

function FormIsReady(){
if (document.Contact.Name.value==""){
document.Contact.Name.focus();
document.getElementById('formName').innerHTML="<font style='font-size:12px; color:#990000; font-style:italic'>Please enter your name!</font>";
document.getElementById('formName').style.visibility='Visible';
return false;
}
/*var mailfrom = document.getElementById('mailfrom');
var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (!filter.test(mailfrom.value)) {
document.Contact.mailfrom.focus();
document.getElementById('formemail').innerHTML="<font style='font-size:12px; color:#990000; font-style:italic'>Please enter a valid email address!</font>";
document.getElementById('formemail').style.visibility='Visible';
return false;
}*/
//alert("going to submit");
document.Contact.submit();
}