// JavaScript Document
function l1(URL)
{
  window.open(URL,"","left=10,top=20,height=450,width=550,resizable=yes,scrollbars=yes");
}

///////////////////form validator

function validator(theform)
{

 if (form1.company.value.length < 3)
  {
    alert("Please fill in your Company");
    theform.company.focus();
    return (false);
  }
  
  if (form1.email.value.length < 3)
  {
    alert("Please fill in your e-mail address");
    theform.email.focus();
    return (false);
  }
  //---------------------------
 
  
  if (form1.contact.value.length < 3)
  {
    alert("Please fill in a Contact");
    theform.contact.focus();
    return (false);
  }
  return (true);
}

