<!--
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
}
// -->


function new_windowPhoto(strToUrl, title, width, height)
{
    window.open('' + strToUrl + '&title=' + title, 'Galeria','titlebar=no,toolbar=no,resizable=yes,scrollbars=yes,status=no,menubar=no,width=' + (width + 100)+ ',height=' + (height + 45));
}


function selecturl(s) {
	var gourl = s.options[s.selectedIndex].value;  window.top.location.href = gourl;
}


<!--
noweOkienko = null;
function galeria(src, w, h){
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=480;
}
if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 noweOkienko = window.open("",'obrazek',ustawienia);
}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
"<html><head>\n"
+"<META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=ISO-8859-2>\n"
+"<title>.:powiekszenie:.</title>\n"
+"<SCRIPT src=imgrep.js LANGUAGE=JavaScript TYPE=text/javascript></SCRIPT>\n"
+"<style><!--\n"
+"body{background-repeat:no-repeat}\n"
+"--></style>\n"
+"</head>\n"
+"<body bottommargin=0 leftmargin=0 marginwidth=0 marginheight=0 rightmargin=0 topmargin=0>\n"
+"<img name=obrazek src=" + src + " onload=\"javascript:window.resizeTo(obrazek.width + 10,obrazek.height + 30);\">\n"
+"</body>\n"
+"</html>"
);
noweOkienko.document.close();
noweOkienko.focus();
}
//-->