function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en',
    includedLanguages: 'en,fr,de,es'
  }, 'google_translate_element');
}

function OhComeOn(theForm)
{
  if (theForm.searchFirstName.value == "")
  {
    alert("We'll need a first name or initial.");
    theForm.searchFirstName.focus();
    return (false);
  }
  if (theForm.searchLastName.value == "")
  {
    alert("We need a full last name for the search.");
    theForm.searchLastName.focus();
    return (false);
  }
  _gaq.push(['_trackEvent', 'Find', 'People', 'Free']);
  return (true);
}
