function frm_Validator2(theForm)
{

var alertsay = "";

if (theForm.Name.value.length < 1)
{
alert("Please enter your name in the \"Name\" field.");
theForm.Name.focus();
return (false);
}

if (theForm.WebURL.value.length < 1)
{
alert("Please enter your web site in the \"Web URL\" field.");
theForm.WebURL.focus();
return (false);
}



var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.- '";
var checkStr = theForm.Name.value;
var allValid = true;
for (i = 0;  i < checkStr.length;  i++)
{
ch = checkStr.charAt(i);
for (j = 0;  j < checkOK.length;  j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
}
if (!allValid)
{
alert("Please enter only letters in the \"Name\" field.");
theForm.Name.focus();
return (false);
}




}

