function Validator(theForm)
{if(theForm.qf.value=="First Name")
{alert("Add a first name please.");theForm.qf.focus();return(false);}
if(theForm.qf.value=="")
{alert("Add a first name or initial.");theForm.qf.focus();return(false);}
if(theForm.qn.value=="Last Name")
{alert("Add a last name first.");theForm.qn.focus();return(false);}
if(theForm.qn.value=="")
{alert("Add a Last Name to start your search.");theForm.qn.focus();return(false);}
_gaq.push(['_trackEvent','Submit','Search']);return(true);}

