<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function validateform()
{
 if (document.contact.contactperson.value=="")
  {
     alert("Please enter the contact person name")
     document.contact.contactperson.focus();
     return(false);
  }
if (document.contact.address.value=="")
  {
     alert("Please enter the address")
     document.contact.address.focus();
     return(false);
  }
if (document.contact.telephone.value=="")
  {
     alert("Please enter the telephone number")
     document.contact.telephone.focus();
     return(false);
  }
}
//-->