function CheckIt()
	{
	var theName = document.getElementById("name");
	var theEmail = document.getElementById("email");
	if (theName.value == "" || theEmail.value == "")
		{
		alert("Please fill in both your name and email address... ");
		return false;
		}
	}