//	player.js

function initialFocus()
{
	document.frmPlayer.txtPlayer.focus();
}	// initialFocus()


function goNext(theForm, caller)
{
	var bContinue = true;
	
	var strPlayer = theForm.txtPlayer.value;
	bContinue = strPlayer.length > 2;
	
	if (bContinue)
	{
		theForm.submit();
	}
	else
	{
		theForm.txtPlayer.value = "";
		theForm.txtPlayer.focus();
	}
	
	return bContinue;
}
