function Form1_Validator(theForm)
{
	if (theForm.MailCode.value == "")
  	{
			alert("Please enter a MailCode.");
		    theForm.MailCode.focus();
		    return (false);
	}

return (true);
}
