function validate(thisform)
{
	anyerrors = 0;
	// player_emailaddress
	if (emailCheck(thisform.player_emailaddress.value))
	{
	
	}
	else
	{
	anyerrors = 1;
	}

	if (thisform.player_comments.value == null || thisform.player_comments.value == "")
	{
	anyerrors = 1;
	alert("You must enter some comments.");
	thisform.player_comments.focus();
	thisform.player_comments.select();
	}

	if (anyerrors == 0)
	{
		thisform.submit();
	}
}
