function checkForm()
{
	var frm = (document.getElementById ? document.getElementById("frmContact") : document.frmContact);

//	else if (!checkLength("frmContact.key_ENQINFO")) {}
	
	if (!checkLength("frmContact.key_FORENAME")) {}
	else if (!checkLength("frmContact.key_SURNAME")) {}
	else if (!checkLength("frmContact.key_TEL")) {}
	else if (!checkLength("frmContact.key_EMAIL")) {}
	else if (nospaces(frm.key_FORENAME.value) == "")
	{
		alert("You need to enter your forename!");
		frm.key_FORENAME.focus();
	}
	else if (nospaces(frm.key_SURNAME.value) == "")
	{
		alert("You need to enter your surname!");
		frm.key_SURNAME.focus();
	}
	else if (nospaces(frm.key_TEL.value) == "")
	{
		alert("You need to enter your telephone number!");
		frm.key_TEL.focus();
	}
	else if (nospaces(frm.key_EMAIL.value) == "")
	{
		alert("You need to enter your email address!");
		frm.key_EMAIL.focus();
	}
	else if (nospaces(frm.key_FORENAME.value) != "" && !validEmail(frm.key_EMAIL.value))
	{
		alert("You need to enter a valid EMAIL address!");
		frm.key_EMAIL.focus();
	}
	else if (nospaces(frm.key_UREGARDEN.value) == "")
	{
		alert("Please tell us about your garden!");
		frm.key_UREGARDEN.focus();
	}
	else if (nospaces(frm.key_UREWANTS.value) == "")
	{
		alert("Please tell us what you want out of your garden!");
		frm.key_UREWANTS.focus();
	}
	else
	{
		frm.action = "gardendesign.php@action=send";
		frm.chk.value = "1"
		frm.submit();
	}
}