<!-- Begin

function blockError(){return true;}
window.onerror = blockError;


function checkForm()
{
	if (document.getElementById("name").value == "")
	{
		alert("You must type in your name");
		return false;
	}
	if (document.getElementById("email").value == "")
	{
		alert("You must type in your email address");
		return false;
	}
	if (document.getElementById("comments").value == "")
	{
		alert("You must type in the comment");
		return false;
	}
	return true;
}

// -->