  function CheckForm() {
  if (document.forms.makeorder.mail.value.length < 7) {
    alert("Your e-mail is too short");
	document.forms.makeorder.mail.focus();
    return false;
  }
  if (document.forms.makeorder.mail.value.length > 100) {
    alert("Your e-mail is too long");
    return false;
	document.forms.makeorder.mail.focus();
  }
  if (! (/^\w+[-_\.]*\w+@\w+-?\w+\.[a-z]{2,4}$/.test(document.forms.makeorder.mail.value)) ) {
    alert("Enter correct e-mail, please");
    document.forms.makeorder.mail.focus();
    return false;
  }
  
  if (document.forms.makeorder.recipient.value.length < 4) {
    alert("Enter your First Name, Middle name and Last Name in the Recipient field");
	document.forms.makeorder.recipient.focus();
    return false;
  }

  if (document.forms.makeorder.street.value.length < 2) {
    alert("Enter your street, please");
	document.forms.makeorder.street.focus();
    return false;
  }

  if (document.forms.makeorder.city.value.length < 2) {
    alert("Enter your city, please");
	document.forms.makeorder.city.focus();
    return false;
  }

  if (document.forms.makeorder.state.value.length < 2) {
    alert("Enter your State or Province, please");
	document.forms.makeorder.state.focus();
    return false;
  }

  if (document.forms.makeorder.zip.value.length < 2) {
    alert("Enter your ZIP or postal code, please");
	document.forms.makeorder.zip.focus();
    return false;
  }

  if (document.forms.makeorder.country.value.length < 2) {
    alert("Enter your Country, please");
	document.forms.makeorder.country.focus();
    return false;
  }

  return true;
}