function Validator(theForm)
{if(theForm.first_name.value=="")
{alert("We need something for First Name or Initial.");theForm.first_name.focus();return(false);}
if(theForm.last_name.value=="")
{alert("Last Name is required for the search.");theForm.last_name.focus();return(false);}
pageTracker._trackEvent('Addresses','Submitted');return(true);}
