function validateForm()
{
var x=this.document.form1.qFN.value;

if (x==null || x=="Your Name")
  {
  alert("You Name Is Missing");
  this.document.form1.qFN.focus();
  return false;
  }


  
var b=this.document.form1.qEmail.value;
var atpos=b.indexOf("@");
var dotpos=b.lastIndexOf(".");

if (atpos<1 || dotpos<atpos+2 || dotpos+2>=b.length)

//if (b==null || b=="Email Address")
  {
  alert("Valid Email Address Required");
    this.document.form1.qEmail.focus();
  return false;
  }
  
  
var c=this.document.form1.qPhone.value;

if (c==null || c=="Phone Number")
  {
  alert("Phone Number Missing");
  this.document.form1.qPhone.focus();
  return false;
  }
  
var d=this.document.form1.qZip.value;

if (d==null || d=="Zip Code")
  {
  alert("Zip Code Missing");
  this.document.form1.qZip.focus();
  return false;
  }

}
