startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startList;

function PencereAc(yol)
{
 var ekranx=805;
 var ekrany=screen.height-180;
 var sol=(screen.width/2)-(ekranx/2);
 open(yol,"","left="+sol+",top=0,width="+ekranx+",height="+ekrany+",scrollbars=yes,resizable=yes,status=no,menubar=no,toolbar=yes,location=no");
}
