function goforit()
{
if(confirm("Submit this form for processing?"))
	{
	if(document.Form.email.value=="" || document.Form.realname.value=="")
		{
		alert("We need to have your name and email address so that we can contact you!");
		return false;
		}
//	if(document.Form.club.checked==false)
//		{
//		alert("You haven't ticked the invite request box!");
//		return false;
//		}
	}
else	{return false;}
}