function CheckForm(theForm){
   if( theForm.a_name.value == "" ){
      alert("Please specify your name");
      theForm.a_name.focus();
   return false;
   }
   if( theForm.b_phone.value == "" ){
      alert("Please provide your phone number");
      theForm.b_phone.focus();
   return false;
   }
   if( theForm.email.value == "" ){
      alert("We must have your email address.");
      theForm.email.focus();
   return false;
   }
   if( theForm.d_referrer.value == "" ){
      alert("Please tell us how you found out about us.");
      theForm.d_referrer.focus();
   return false;
    }
   if( theForm.f_question.value == "" ){
      alert("Do you have a question?  If not, type the word no.");
      theForm.f_question.focus();
   return false;
   }
return true;
}
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
