
function OnLoad()
{
	var htmlName = document.getElementById( 'name' );
	if( htmlName != null )
	{
		htmlName.focus();
	}
}

function ValidateForm()
{
	return true;
}

