function contact_request_Validator(theForm){
  if (theForm.fname.value == ""){
    alert("Please enter your name.");
    theForm.fname.focus();
    return (false);
  }

  if (theForm.status.options[theForm.status.selectedIndex].value=="00"){
	alert("Please select answer to current status.")
	theForm.status.focus();
    return (false);
  }

  if (theForm.address1.value == ""){
    alert("Please enter your street address.");
    theForm.address1.focus();
    return (false);
  }
  if (theForm.city.value == ""){
    alert("Please enter your city name.");
    theForm.city.focus();
    return (false);
  }
  if (theForm.state.value == ""){
    alert("Please enter your state name.");
    theForm.state.focus();
    return (false);
  }
  if (theForm.zip.value == ""){
    alert("Please enter your zip code.");
    theForm.zip.focus();
    return (false);
  }
  if (theForm.phone.value == ""){
    alert("Please enter your phone number.");
    theForm.phone.focus();
    return (false);
  }
  if ((theForm.your_email.value.indexOf('@',0) == -1) || (theForm.your_email.value.indexOf('.',0) == -1)){
    alert("Email Address is incorrectly formatted. Please enter again.");
    theForm.your_email.focus();
    return (false);
  }

  return (true);
}
