function ValidateContact(theForm)
{
  if (theForm.name.value == "")
  {
    alert("Fill out your name please.");
	theForm.name.focus();
    return (false);
  }
  if (theForm.email.value == "")
  {
    alert("Fill out email address please.");
	theForm.email.focus();
    return (false);
  }
  if (theForm.country.value == "")
  {
    alert("Fill out your country please.");
	theForm.country.focus();
    return (false);
  }
  if (theForm.phone.value == "")
  {
    alert("Fill out your phone number please.");
	theForm.phone.focus();
    return (false);
  }
  if (theForm.subject.value == "")
  {
    alert("Fill out a subject please.");
	theForm.subject.focus();
    return (false);
  }
  if (theForm.message.value == "")
  {
    alert("Write a message please.");
	theForm.message.focus();
    return (false);
  }
  if (theForm.security_code.value == "")
  {
    alert("Enter the security code as shown");
	theForm.security_code.focus();
    return (false);
  }

  return (true);
}