<!--
function validate()
{
 if(document.frm1.name.value=="")
 {
 alert("Name Should not be Empty");
 document.frm1.name.focus();
 return false;
 }
 else
  if(document.frm1.address.value=="")
 {
 alert("Address Should not be Empty");
 document.frm1.address.focus  ();
 return false;
 }
  else
    if(document.frm1.phone.value=="")
  {
   alert("Phone Should not be Empty");
   document.frm1.phone.focus();
   return false;
  }
  else
  if(document.frm1.email.value=="")
  {
   alert("Email Should not be Empty");
   document.frm1.email.focus();
   return false;
  }
  else

  if(document.frm1.reason.value=="")
  {
   alert("Reason Should not be Empty.");
   document.frm1.reason.focus();
   return false;
  }


  }