<!--

function form_chk()

{



 
  if (document.frm1.name.value == "")
  {
    alert("Please enter your name !");
    document.frm1.name.focus();
    return (false);
  }

  if (document.frm1.name.value.length < 2)
  {
    alert("Name has at least 2 characters !");
    document.frm1.name.focus();
    return (false);
  }



txt=document.frm1.email.value;

  if (txt.indexOf("@")<1){
   alert("Wrong e-mail address. Check the prefix and '@' sign");
    document.frm1.email.focus();
    return (false);
   }

  if (txt.indexOf(".")<1){
   alert("Sorry. This email address seems wrong ?");
    document.frm1.email.focus();
    return (false);
  }
 

  if (document.frm1.email.value.length < 7)
  {
    alert("Does not look like an e-mail address !");
    document.frm1.email.focus();
    return (false);
  }






  if (document.frm1.telnbr.value == "")
  {
    alert("Please enter the telephone number !");
    document.frm1.telnbr.focus();
    return (false);
  }

  if (document.frm1.telnbr.value.length < 5)
  {
    alert("Is the telephone correct ?");
    document.frm1.telnbr.focus();
    return (false);
  }


 
  if (document.frm1.company.value == "")
  {
    alert("Please enter the company name !");
    document.frm1.company.focus();
    return (false);
  }

 if (document.frm1.company.value.length < 3)
  {
    alert("Company name has at least 3 characters !");
    document.frm1.company.focus();
    return (false);
  }


 

  return (true);
}

//-->
