<!--
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function validateUserInput()
	{
	if ((document.contact.name.value == "")
	|| (document.contact.email.value == "")
	|| (document.contact.Comment.value == ""))
		{
		var errors="";
		if((document.contact.name.value == ""))
			{
			errors = "Please enter your name\n";
			}
		if((document.contact.email.value == ""))
			{
			errors += "Please enter your email address\n";
			}
		if((document.contact.phone.value == ""))
			{
			errors += "Please enter a contact phone\n";
			}
		if((document.contact.Comment.value == ""))
			{
			errors += "Please enter a message\n";
			}
		document.passed = false;
		alert(errors);
		}
	else
		{
		document.passed = true;
		}
	}
	

//-->