function validate(field)
{
  with (field)
  {
    if (value==null||value=="")
    {
    //alert(alerttxt);
      return false;
    }
    else
    {
      return true;
    }
  }
}

function validate_form(thisform)
{
  with (thisform)
  {
    if (validate(q)==false)
    {q.focus();return false;}
  }
}