<!--
// form-validation-utf-8.js is the brain, customize it to fit your needs

function checkFormSubscribe()
{
	var m_customer_email = document.formSubscribe.customer_email.value;
	var m_customer_telephone = document.formSubscribe.customer_telephone.value;

	if (!isBlank(m_customer_telephone) && !isValidPhoneNumber(m_customer_telephone))
	{
		alert("Please check the telephone number, removing any letters and unusual characters\n(the number should be more than 5 and less than 32 characters long)");
		document.formSubscribe.customer_telephone.focus();
	}
	else
	{
		if (isValidEmailAddress(m_customer_email))
		{
			document.formSubscribe.submit();
		}
		else
		{
			alert("Please enter a valid e-mail address");
			document.formSubscribe.customer_email.focus();
		}
	}

	return false;
}

// Copyright (c) 2000-2008 Atolis Ltd, 2008-2009 Comtec (Europe) Ltd.
// -->

