<!-- Begin

function validateForm()
{
// check name
if (document.contform.name.value == "")
{
       document.contform.name.focus();
	alert ("YOUR NAME?");
	return false;
}

// check email address
    if(document.contform.email.value.length == 0) {
      document.contform.email.focus();
      alert("YOUR E-MAIL?");
      return false;
      }
    if(-1 == document.contform.email.value.indexOf("@")) {
       document.contform.email.focus();
       alert("E-MAIL WITHOUT '@'?");
       return false;
       }
    if(-1 != document.contform.email.value.indexOf(",")) {
       document.contform.email.focus();
       alert("E-MAIL WITH A COMMA?");
       return false;
       }
    if(-1 != document.contform.email.value.indexOf("#")) {
       document.contform.email.focus();
       alert("E-MAIL WITH A '#'?" );
       return false;
       }
    if(-1 != document.contform.email.value.indexOf("!")) {
       document.contform.email.focus();
       alert("E-MAIL WITH A '!'?" );
       return false;
       }
    if(-1 != document.contform.email.value.indexOf(" ")) {
       document.contform.name.focus();
       alert("E-MAIL WITH WHITESPACE?" );
       return false;
       }
    if(document.contform.email.value.length == (document.contform.email.value.indexOf("@")+1) ) {
       document.contform.email.focus();
       alert("NO DOMAIN AFTER YOUR '@'?.");
       return false;
       }

// check message address
if (document.contform.message.value == "")
{
      document.contform.message.focus();
alert ("YOUR MESSAGE?");
return false;
}

return true;
}
// End -->