// JScript File

<!-- hide this script from non-javascript-enabled browsers

function validatefrmfields()
{
	if (document.brochure.titles.value=="Please Select -")
	{
		alert("Please make sure you enter your Title");
		brochure.titles.focus();
		return (false);
	}
	if (document.brochure.firstName.value.length < 1)
	{
		alert("Please make sure you enter your First Name");
		brochure.firstName.focus();
		return (false);
	}
	if (document.brochure.surname.value.length < 1)
	{
		alert("Please make sure you enter your Last Name");
		brochure.surname.focus();
		return (false);
	}
	if (document.brochure.address1.value.length < 1)
	{
		alert("Please make sure you enter your Postal Address");
		brochure.address1.focus();
		return (false);
	}
	if (document.brochure.city.value.length < 1)
	{
		alert("Please make sure you enter your complete Postal Address");
		brochure.city.focus();
		return (false);
	}
	if (document.brochure.postcode.value.length < 1)
	{
		alert("Please enter your Postcode");
		brochure.postcode.focus();
		return (false);
	}
	if (document.brochure.postcode.value.length > 8)
	{
		alert("Postcode appears invalid - please check and retry");
		brochure.postcode.focus();
		return (false);
	}
	
/*
	if (document.brochure.email.value.length < 4)
	{
		alert("Please enter your Email address in order that we may reply");
		brochure.email.focus();
		return (false);
	}
*/
	return (true);
}

// stop hiding -->
