window.onload = function()
{
	var usernameField = document.getElementById("username");
	if(usernameField != null) 
	{
		usernameField.focus();
	}
}