function FrontPage_Form1_Validator(theForm)
{if(theForm.realname.value=="")
{alert("Please enter a value for the \"name\" field.");theForm.realname.focus();return(false);}
if(theForm.realname.value.length>256)
{alert("Please enter at most 256 characters in the \"name\" field.");theForm.realname.focus();return(false);}
if(theForm.address.value=="")
{alert("Please enter a value for the \"address\" field.");theForm.address.focus();return(false);}
if(theForm.address.value.length>256)
{alert("Please enter at most 256 characters in the \"address\" field.");theForm.address.focus();return(false);}
if(theForm.city.value=="")
{alert("Please enter a value for the \"city\" field.");theForm.city.focus();return(false);}
if(theForm.city.value.length>256)
{alert("Please enter at most 256 characters in the \"city\" field.");theForm.city.focus();return(false);}
if(theForm.state.value=="")
{alert("Please enter a value for the \"state\" field.");theForm.state.focus();return(false);}
if(theForm.state.value.length>256)
{alert("Please enter at most 256 characters in the \"state\" field.");theForm.state.focus();return(false);}
if(theForm.zipcode.value=="")
{alert("Please enter a value for the \"zipcode\" field.");theForm.zipcode.focus();return(false);}
if(theForm.zipcode.value.length>12)
{alert("Please enter at most 12 characters in the \"zipcode\" field.");theForm.zipcode.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>45)
{alert("Please enter at most 25 characters in the \"email\" field.");theForm.email.focus();return(false);}
return(true);}
