
function FrontPage_Form1_Validator(theForm)
{

if (theForm.Name.value == "")
{
alert("Please enter your first and last name.");
theForm.Name.focus();
return (false);
}


return (true);
}
