﻿function focusLoginField() {
	if (!document.layers && document.getElementById) {
		var login = document.getElementById("login");
		var password1 = document.getElementById("password1");
	
		if (login)
			login.focus();
		else
			password1.focus();
	}
}

function checkForm() {
	if (!document.layers && document.getElementById) {
		if (document.getElementById("password") && document.getElementById("password").value.length <= 0)
		{
			alert("Annathan salasanan!");
			return false;
		}
		return true;	
		document.getElementById("login").focus();
	}
}

if (top != self) {
    top.location.href = unescape(window.location.pathname);
}
