function openVG(osoite){
        var maxX=screen.width;
        var maxY=screen.height;
        var w=800;
        var h=600;
        var windowprops = 'width='+w+',height='+h+',location=no,scrollbars=no,'+
        ' toolbar=no,resizable=no,status=no,screenX='+(maxX-w)/2+',screenY='+(maxY-h)/2+','+
        ' left='+(maxX-w)/2+',top='+(maxY-h)/2;
        imageWindow=window.open(osoite, '', windowprops);
}
function openImage(osoite){
        var maxX=screen.width;
        var maxY=screen.height;
        var w=820;
        var h=620;
        var windowprops = 'width='+w+',height='+h+',location=no,scrollbars=no,'+
        ' toolbar=no,resizable=no,status=no,screenX='+(maxX-w)/2+',screenY='+(maxY-h)/2+','+
        ' left='+(maxX-w)/2+',top='+(maxY-h)/2;
        imageWindow=window.open(osoite, '', windowprops);
}

function openMobiiliImage(osoite){
        var maxX=screen.width;
        var maxY=screen.height;
        var w=205;
        var h=240;
        var windowprops = 'width='+w+',height='+h+',location=no,scrollbars=yes,'+
        ' toolbar=no,resizable=no,status=no,screenX='+(maxX-w)/2+',screenY='+(maxY-h)/2+','+
        ' left='+(maxX-w)/2+',top='+(maxY-h)/2;
        imageWindow=window.open(osoite, '', windowprops);
}

function openWindow(osoite){
        var maxX=screen.width;
        var maxY=screen.height;
        var w=820;
        var h=620;
        var windowprops = 'width='+w+',height='+h+',location=no,scrollbars=yes,'+
        ' toolbar=no,resizable=yes,status=no,screenX='+(maxX-w)/2+',screenY='+(maxY-h)/2+','+
        ' left='+(maxX-w)/2+',top='+(maxY-h)/2;
        imageWindow=window.open(osoite, '', windowprops);
}

function startList_old() {
	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", "");
				}
			}
		}
	}
}



