function inicializarPagina()
{
	var txtUsername = document.getElementById('txtUser');
	var txtPassword = document.getElementById('txtPassword');
	
	if (txtUsername.value.length == 0)
	{
		txtUsername.focus();
	}
	else
	{
		txtPassword.focus();
	}
}

