function layout_onload() {
	// focus on auth input if there is one
	if (document.getElementById && document.getElementById('auth_login')) {
		var defaultInput = document.getElementById('auth_login_name');
		defaultInput.focus();
	}
}
