function CheckForm(theForm){
   if( theForm.email.value == "" ){
      alert("Please provide your email address.");
      theForm.email.focus();
   return false;
   }
   if( theForm.office_name.value == "" ){
      alert("Please provide the name of your real estate office.");
      theForm.office_name.focus();
   return false;
   }
   if( theForm.address.value == "" ){
      alert("Please provide your mailing address.");
      theForm.address.focus();
   return false;
   }
    if( theForm.url.value == "" ){
      alert("Please provide your web site url.");
      theForm.url.focus();
   return false;
   }
   if( theForm.phone.value == "" ){
      alert("Please provide your phone number");
      theForm.phone.focus();
   return false;
   }
    if( theForm.introduction.value == "" ){
      alert("Please provide a 100 word or less introduction or type NA.");
      theForm.introduction.focus();
   return false;
   }
   if( theForm.website_link.value == "" ){
      alert("Please confirm whether or not you want your web site link activated for $50 per year.");
      theForm.website_link.focus();
   return false;
   }
   if( theForm.pros.value == "" ){
      alert("Please confirm whether or not you want to be added to our Real Estate Professionals page for $100 per year.");
      theForm.pros.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);