function confirmemail() {
	if (document.MM_returnValue && (document.form.email.value != document.form.confirm_email.value)) {
		alert('The email addresses you typed do not match. Please retype the email address in both boxes.');
		document.MM_returnValue = false;
	}
}

function confirmsubscribe() {
	if (document.MM_returnValue && document.form.subscribe.checked == false) {
		alert('Please tick the box to confirm that you would like to receive our regular update.');
		document.MM_returnValue = false;
	}
}
