<!--
function CheckFields(contact) {

  if ( contact.name.value   == "" ||
       contact.email.value  == "" ||
       contact.message.value  == "" ) {
     alert( "You must fill all the form fields!" );
     return false;
  }

else if ( contact.email.value.length <= 6 ||
      	  contact.email.value.indexOf ('@', 0) == -1 ||
      	  contact.email.value.indexOf ('.', 0) == -1){

      alert("'' " + contact.email.value + " '', is not a valid e-mail address!");
      return false;
 } 

}
//-->
