function Validate(theForm){
   if (theForm.fld_name.value == ''){
      alert("You must enter your Full Name");
          theForm.fld_name.focus();
      return false;
   }
   if (theForm.fld_email.value == ''){
      alert("You must enter your Email Address");
          theForm.fld_email.focus();
      return false;
   }
   if (theForm.fld_number.value == ''){
      alert("You must enter your Phone Number");
          theForm.fld_number.focus();
      return false;
   }
}
