noweOkienko = null;
function galeria(src, w, h){
if(window.screen){
aw=screen.availWidth;
ah=screen.availHeight;
}else{
aw=640;
ah=450;
}
if(w==null) {
w=900;
}
if(h==null) {
h=500;
}
if(noweOkienko==null || noweOkienko.closed){
ustawienia=
"left=" + (aw-w)/2 + ","
+"top=" + (ah-h)/2 + ","
+"screenX=" + (aw-w)/2 + ","
+"screenY=" + (ah-h)/2 + ","
+"width="+ 900 +","
+"height="+ 500 +","
+"innerWidth="+ 900 +","
+"innerHeight="+ 500 +","
+"toolbar=no,"
+"location=no,"
+"directories=no,"
+"status=no"
+"menubar=no,"
+"scrollbars=no,"
+"resizable=no"
noweOkienko = window.open(src,'Galeria',ustawienia);
}
noweOkienko.focus();
}

