
function high(whichMenuItem){
theobject=whichMenuItem
highlighting=setInterval("highlightit(theobject)",60)
}

function low(whichMenuItem){
clearInterval(highlighting)
whichMenuItem.filters.alpha.opacity=100
}

function highlightit(currentMenuItem){
if (currentMenuItem.filters.alpha.opacity>60) currentMenuItem.filters.alpha.opacity-=20
else if (window.highlighting)
clearInterval(highlighting)
}






function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}





function LM_validate(form) {

	if (document.form.firstname.value == "") {
		alert("Please enter your Firstname.");
		return false;
	}

	if (document.form.lastname.value == "") {
		alert("Please enter your Lastname.");
		return false;
	}

	if (document.form.telephone.value == "") {
		if (document.form.mobile.value == "") {
			if (document.form.email.value == "") {
				alert("Please enter your telephone number, mobile number or email address.");
				return false;
			}
		}
	}
}