function validate_form(frm)
{
  if (frm.contact.value=="")
  {     
    frm.contact.focus();   
    alert('Invalid contact entered.');
    return(false);    
  }

  if (frm.email.value=="")
  {     
    frm.email.focus();   
    alert('Invalid email entered.');
    return(false);    
  }

  return(true) 
}

function fSetFocus() 
{
  if (document.all) 
  {
    document.forms(0).item(0).focus();
  }
  else
  { 
    if (document.getElementByName) 
    {
      document.getElementByName('company').focus();
    }
  }
}