﻿
function FrontPage_Form1_Validator(theForm)
{

if (theForm.FullName.value == "")
{
alert("Please enter your full name in the box provided.");
theForm.FullName.focus();
return (false);
}

return (true);
}

