<!--

// checkout form data validation...

function checkout_form(theForm) {

   if (theForm.contact_name.value == "") {
      alert("Please enter a value for \"Your Name\".");
      theForm.contact_name.focus();
      return (false);
   }

   if (theForm.email_address.value == "") {
      alert("Please enter a value for \"Email Address\".");
      theForm.email_address.focus();
      return (false);
   }

   if (theForm.message_subj.value == "") {
      alert("Please enter a value for \"Subject\".");
      theForm.message_subj.focus();
      return (false);
   }

   if (theForm.message_body.value == "") {
      alert("Please enter a value for \"Message\".");
      theForm.message_body.focus();
      return (false);
   }

   return (true);
  
}


//-->