
 
function validate()
{
if (document.contactform.name.value.length < 2)
	{
	window.alert("Please enter your name. Thank you.");
    	document.contactform.name.focus();
	return false;
	}

if (document.contactform.club.value.length < 2)
	{
	window.alert("Please enter the club to which you belong.Thank you");
    	document.contactform.club.focus();
	return false;
	}

if (document.contactform.comments.value.length < 1)
	{
	window.alert("Please enter your message");
    	document.contactform.comments.focus();
	return false;
	}

return true;
}