function validate()
{
  var s="";

  if (document.info.your_name.value=="") {
    s=s+"<LI>Name is not filled in.</LI>"
  }
  if (document.info.email.value=="") {
    s=s+"<LI>Email is not filled in.</LI>"
  }
  if (s=="") {
    document.info.submit()
  } else {
    msg=window.open("validate.html","Error","scrollbars=no,width=400,height=300")
    msg.document.write("<P><B>Problem</B></P><UL>"+s+"</UL>");
    msg.document.write("<F"+"ORM><P align='center'>Please enter the missing information and try again</P>");
    msg.document.write("<P align='center'><input type='button' value='Close' onClick='self.close()'></P></FOR"+"M>");
  }
  return false;
}