<!-- hide me

function check_form()
{
  var first_name = document.contact_form.first_name;
  var last_name = document.contact_form.last_name;  
  var tel = document.contact_form.tel;
  var email = document.contact_form.email;
  var country = document.contact_form.country;
  var question_about = document.contact_form.question_about;
  var message = document.contact_form.message;
  var SafeCode = document.contact_form.SafeCode;
  
  ok = false;

  ok = entryExist(first_name, "The following field is required: First Name") &&  	
  		 entryExist(last_name, "The following field is required: Last Name") &&
  		 entryExist(tel, "The following field is required: Telephone") && 
  		 isNum(tel, "Telephone must contain only numbers with no space");
                  

  if(ok && (!emailCheck(email.value)))
  {
    email.value = "";
    email.focus();
    ok = false;
  }		

 if(ok)
    ok = entryExist(country, "The following field is required: Country") &&
  		 entryExist(message, "The following field is required: Your Message") &&
  		 entryExist(SafeCode, "Please enter the Validation Code.\nThe Validation Code is used to prevent spam & automated submissions.");
    	
  if(ok)
    return true;
  else
    return false;
}
//-->