a:hover { text-decoration: none }
<!–
function FrontPage_Form1_Validator(theForm)
{
if (theForm.Name.value == "")
{
alert("Please enter a value for the \"Name\" field.");
theForm.Name.focus();
return (false);
}
if (theForm.Name.value.length < 3)
{
alert("Please enter at least 3 characters in the \"Name\" field.");
theForm.Name.focus();
return (false);
}
if (theForm.Email.value == "")
{
alert("Please enter a value for the \"Email\" field.");
theForm.Email.focus();
return (false);
}
if (theForm.Email.value.length < 5)
{
alert("Please enter at least 5 characters in the \"Email\" field.");
theForm.Email.focus();
return (false);
}
var checkOK = "0123456789-";
var checkStr = theForm.Guests.value;
var allValid = true;
var validGroups = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j