<!--
	  
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			this.style.zIndex = "99999";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

sfHoverBtn = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("INPUT");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfHoverBtn";
			this.style.zIndex = "99999";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfHoverBtn\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHoverBtn);


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function DynamicWindow(url, w, h, pw, ph, l, t, pagetitle) {
poph = + ph + 60;
popw = + pw + 30;
disp = window.open("","pop","scrollbars=1,height=" + poph + ",width=" + popw + ",left=" + l + ",top=" + t + "");
content = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
content += '<html>';
content += '<head>';
content += '<title>' +pagetitle+ '<\/title>';
content += '<style type="text/css">a:link {font-family: ARIAL; font-size: 10px; color: #CC0000; text-decoration: none} a:visited {font-family: ARIAL; font-size: 10px; color: #CC0000; text-decoration: none} a:hover {font-family: ARIAL; font-size: 10px; color: #CC0000; text-decoration:underline;}<\/style>';
content += '<\/head>';
content += '<body>';
content += '<p align="center"><img src="' + url + '" height="' + h + '" width="' + w + '" alt="' + pagetitle + '"><\/p>';
content += '<p align="center"><a href="javascript:self.close()">Zatvori prozor<\/a><\/p>';
content += '<\/body><\/html>';
disp.document.write(content);
disp.document.close();
}


//-->
