function subVerifyForm()
{

var email;

email=window.document.contact.email.value;

if( email == "" )

  {
  window.alert("Please enter a valid email address!");
  return false;
  }

}
