// JavaScript Document
var browserName=navigator.appName; 
startList = function() {
	if (document.all&&document.getElementById) {
		var navRoot = document.getElementById("navigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			var node = navRoot.childNodes[i];
			if (node.nodeName=="TD") {
				node.onmouseover = function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		  }
	 }
}
if (browserName != "Opera") {
	window.onload = startList;
}
function openPopUp(koja, w, h, status, scrollbars){
	var winl, wint, settings, win;
	koja = koja.href;
	if (w == 'undefined' || w == '' || !w) {w = 640;}
	if (h == 'undefined' || h == '' || !h) {h = 350;}
	if (status == 'undefined' || status == '' || !status) {status = 'no';}
	if (scrollbars == 'undefined' || scrollbars == '' || !scrollbars) {scrollbars = 'no';}
	winl = (screen.width-w)/2;
	wint = (screen.height-h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl;
	settings = settings + ',scrollbars=' + scrollbars + ',toolbar=no,location=no,status=' + status + ',menubar=no,resizable=no,dependent=yes';
	win = window.open(koja, 'PicturePopUp', settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	return false;
}
function showpic(myLink, w, h) {
	var winl, wint, settings, win;
	var mySlika = myLink.href;
	var myTitle = myLink.title;
	winl = (screen.width - w)/2;
	wint = (screen.height - h)/2;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl;
	settings = settings + ',scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=yes';
	win = window.open('', 'Pic', settings);
	if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	win.document.open();
	win.document.write("<html><head><title>" + myTitle + "</title>");
	win.document.write("<STYLE type=\"text/css\">");
	win.document.write("body {padding: 0px; margin: 0px; text-align: center; background-color: #006}");
	win.document.write("</STYLE>");
	win.document.write("</head><body>");
	win.document.write("<table width='100%' height='100%'><tr><td align='center'>");
	win.document.write("<IMG src=\"" + mySlika + "\">");
	win.document.write("</td></tr></table>");
	win.document.write("</body></html>");
	win.document.close();
	return false;
}
