function check_contact_form(form_name) 
{
  error = false;
  form = form_name;
  error_message = "Errors have occured during the process of your form.\n\nPlease make the following corrections:\n\n";	
  check_input("name", 1, "Your Name is required.");
  check_email("email", "Email address is");
  check_input("content", 1, "Your Message is required.");
	check_input("captcha", 1, "CAPTCHA string is required.");
  if (error == true) 
	{
		alert(error_message);
		return false;
  } 
  else 
	{
		submitted = true;
		return true;
  }
}
