// Check the Trial Subscriptions data entries

function ChkForm() {
   var chkCount = 0;
   var f = document.trialfrm;
   var msg = "";
 
   if (f.f_name.value == "") {
      chkCount = chkCount + 1;
	  msg = msg + "\nEnter your Name.";
   }
   if (f.f_address1.value == "") {
      chkCount = chkCount + 1;
	  msg = msg + "\nEnter the Street Address.";
   }
   if (f.f_city.value == "") {
      chkCount = chkCount + 1;
	     msg = msg + "\nEnter the City.";
   }
   if (f.f_state.value == "") {
      chkCount = chkCount + 1;
	     msg = msg + "\nEnter the State.";
   }
   if (f.f_country.value == "") {
      chkCount = chkCount + 1;
	   msg = msg + "\nEnter the Country.";
   }
   if (f.f_zip.value == "") {
      chkCount = chkCount + 1;
	  msg = msg + "\nEnter the Zip or Postal Code.";
   }
   if (f.f_phone.value == "") {
      chkCount = chkCount + 1;
	  msg = msg + "\nEnter your Phone Number."; 
   }

   if (f.f_email.value == "") {
      chkCount = chkCount + 1;
	   msg = msg + "\nEnter your Email address.";
   }
      
   if (chkCount == 0) {
      return true;
    } else {
      alert (msg);
      return false;
     }
   
  }