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