
  function submitForm(){
    if(validateForm()){
      document.getElementById('subscription-form').submit()
    }
  }
  
  function validateForm(){
		var message = ""
		var highlighColour = '#F4D8D6';
		document.getElementById('name').style.backgroundColor = '#FFFFFF';
		document.getElementById('email').style.backgroundColor = '#FFFFFF';
		document.getElementById('postcode').style.backgroundColor = '#FFFFFF';
		document.getElementById('captcha').style.backgroundColor = '#FFFFFF';
		if (document.getElementById('name').value==''){
		  document.getElementById('name').style.backgroundColor = highlighColour ;
		  message += "   No name given\n";
		}
		if (!validateEmailAddress(document.getElementById('email'))){
		  document.getElementById('email').style.backgroundColor = highlighColour ;
		  message += "   Invalid email address\n";
		}
		if (!validatePostcode(document.getElementById('postcode'))){
		  document.getElementById('postcode').style.backgroundColor = highlighColour ;
		  message += "   Postcode missing or wrong format\n";
		}
		if (document.getElementById('captcha').value==''){
		  document.getElementById('captcha').style.backgroundColor = highlighColour ;
		  message += "   Validation text not entered\n";
		}
		if (document.getElementById('captcha').value=='') document.getElementById('captcha').focus();
		if (!validatePostcode(document.getElementById('postcode'))) document.getElementById('postcode').focus();
		if (!validateEmailAddress(document.getElementById('email'))) document.getElementById('email').focus();
		if (document.getElementById('name').value=='') document.getElementById('name').focus();
		
		if (message.length == 0){
			return true;
		}
		else {
			message = "Please check the following information:\n\n" + message;
			alert(message);
			return false;
		}
  }

  
  
