// okno otwierane po klikniêciu

function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );
}

// rozwijane menu bez przycisku - otwieranie poszczegolnych serwisow

function selecturl(s) {
	var gourl = s.options[s.selectedIndex].value;	window.top.location.href = gourl;
}

// otwieranie grafiki w osobnym oknie
 
nn4=(document.layers) ? true : false; 
ie4=(document.all) ? true : false; 

Nowe=null; 
function Otworz(w,s,src) { 
if (Nowe) { 
 if (ie4) Nowe.close(); 
 else if (nn4) Nowe.closed; 
 Nowe=null 
 }; 
Nowe=window.open("", "","toolbar=no,menubar=no,location=no,personalbar=no, scrollbars=no,status=no,directories=no,resizable=no,height="+w+",width="+s); 
Nowe.document.write("<HTML><HEAD><STYLE>BODY{BACKGROUND-REPEAT:no-repeat;}</STYLE></HEAD><BODY BACKGROUND="+src+"></BODY></HTML>") 
Nowe.focus() 
}
