<!--

function chkU()
{  
  if (document.personinfo.name.value == "")
  {  alert ("All Required Fields are not filled in 'Name' ")
     document.personinfo.name.focus() 
     return false } 
  if (document.personinfo.email.value == "" || document.personinfo.email.value.indexOf("@") == -1 )
  {  alert ("Please enter a valid 'Email Address' ")
     document.personinfo.email.focus()
     return false }

  else
     return true
}

function chk()
{
  if ( chkU() )
  { 
    alert("Thanks you for you inquiry. We will be contacting you shortly.");
    document.personinfo.submit();
  }
}

//-->
