function noframes(){
if (window != top) top.location.href = location.href;
}
function gothere(){document.forms[0].submit()}
function verify()
		{
		if (document.forms[0].name.value.search(/^./))
			{
		    alert("Please enter your name.")
			document.forms[0].name.focus(); 
	     	return
	     	}
			if (document.forms[0].email.value.search(/^.+@.+\..+$/))
	     	{
	     	alert("Please enter a valid email address")
			document.forms[0].email.focus();
	     	return
	     	}
			if (document.forms[0].comments.value.search(/^./))
	     	{
	     	alert("Please enter your comments.")
			document.forms[0].comments.focus();
	     	return
	     	}
			else
	     	{
	 		gothere()
	 		return
	     	}
		}
	
