function poptastic(page, height, width, pagetitle)
{
var OpenWindow=window.open(page,pagetitle,"height="+height+",width="+width+"");
}

function logoutconfirm() {
	var answer = confirm("Ar tikrai norite atsijungti?")
	if (answer){
		window.location = "logout.html";
	}
}
