function ValidateLostPassword(theForm)
{
  if (theForm.email.value == "")
  {
    alert("Fill out your Email address please.");
	theForm.email.focus();
    return (false);
  }
  if (theForm.birth_day.value == "")
  {
    alert("Fill out your day of birth please.");
	theForm.birth_day.focus();
    return (false);
  }
  if (theForm.birth_month.value == "")
  {
    alert("Fill out your month of birth please.");
	theForm.birth_month.focus();
    return (false);
  }
  if (theForm.birth_year.value == "Year")
  {
    alert("Fill out your year of birth please.");
	theForm.birth_year.focus();
    return (false);
  }
return (true);
}