function urljump(url){top.window.location=url;}
function Validator(theForm)
{if(theForm.firstname.value=="First Name or Initial")
{alert("Add a first name please.");theForm.firstname.focus();return(false);}
if(theForm.firstname.value=="")
{alert("Add a first name or initial.");theForm.firstname.focus();return(false);}
if(theForm.lastname.value=="Last")
{alert("Add a Last Name to search.");theForm.lastname.focus();return(false);}
if(theForm.lastname.value=="")
{alert("Last Name Is Required.");theForm.lastname.focus();return(false);}
if(theForm.statename.value=="State")
{alert("State is optional but can help narrow your search."+'\n'+"Leave it blank to search all states.");theForm.statename.focus();return(false);}
_gaq.push(['_trackEvent','Bots','Submit']);return(true);}

