if (top != self) { top.location.href = location.href; } function onPageLoad() { checkBrowserVersion("browser-warning"); setFocusOnForm(); } function setFocusOnForm() { var f = null; if (document.getElementById) { f = document.getElementById('loginData'); } if (f) { if (f.Userfullname && (f.Userfullname.value == null || f.Userfullname.value == '')) { f.Userfullname.focus(); } else if (f.password) { f.password.focus(); } } } window.onload = onPageLoad;