
function validateForm(form) { 



if (form.namew.value == "") { 

   alert("Please Tell Us Your Name."); 

   form.namew.focus( ); 

   return false; 

   }

if (form.companyw.value == "") { 

   alert("Please Tell Us The Name Of Your Company."); 

   form.companyw.focus( ); 

   return false; 

   }

if (form.contactw.value == "") { 

   alert("What Is The Contact Persons Name?"); 

   form.contactw.focus( ); 

   return false; 

   }

if (form.streetw.value == "") { 

   alert("Please Tell Us The Street Address."); 

   form.streetw.focus( ); 

   return false; 

   }

if (form.cityw.value == "") { 

   alert("Please Fill In The City. Don't Forget To Select Your State Below"); 

   form.cityw.focus( ); 

   return false; 

   }

if (form.countryw.value == "") { 

   alert("Please Fill In The Country"); 

   form.countryw.focus( ); 

   return false; 

   }

if (form.zipw.value == "") { 

   alert("Please Fill In The Zip Code"); 

   form.zipw.focus( ); 

   return false; 

   }

if (form.taxw.value == "") { 

   alert("Please Fill In Your Tax ID"); 

   form.taxw.focus( ); 

   return false; 

   }

if (form.resalew.value == "") { 

   alert("Please Fill In Your Resale License"); 

   form.resalew.focus( ); 

   return false; 

   }

if (form.emailw.value == "") { 

   alert("Please Fill In Your E-Mail Address"); 

   form.emailw.focus( ); 

   return false; 

   }

if (form.phonew.value == "") { 

   alert("Please Tell Us Your Phone Number"); 

   form.phonew.focus( ); 

   return false; 

   }

if (form.commentw.value == "") { 

   alert("Please Give A Description Of Your Business"); 

   form.commentw.focus( ); 

   return false; 

   }



}
