function PopupPic(sPicURL) {
     window.open( "popup.htm?"+sPicURL, "",  
          "resizable=1,HEIGHT=200,WIDTH=200");
} 




noweOkienko = null;
function galeria(src, w, h){

 aw=400;
 ah=400;

if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"width=400,"
 +"height=400,"
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=yes,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=yes"
 noweOkienko = window.open("",'obrazek',ustawienia);
}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
//zigzag.prv.pl
"<html><head><title></title>\n"
+"</head><BODY bgcolor=#ffffff >\n"
+"<center><div class=bgfoto id='wait' style='position:absolute; left:" + (w-120)/2 + "px; top:" + h/2 + "px;"+" z-index:1'><font size='2' font color='#3C436C' face='sans-serif'><b><br> </b> </font></div>\n"
+"<div id='img' style='position:absolute; left:0; top:0;z-index:2'><a href='javascript:window.close()'><img src="+ src +"   alt=' Zamknij ' border=0></a></div></center>\n"
+"</body></html>"
);
noweOkienko.document.close();
noweOkienko.focus();
}


function galeria2(URL, WIDTH, HEIGHT) {
timeout=0;
windowprops = "left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+50);

text = "<html><head><title>Mapka</title></head><body bgcolor='white'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><a href='javascript:window.close()'><img alt=' Zamknij ' border='0' src='" + URL + "'></a>";

if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Obrazek zostanie zamknięty za " + timeout + " sekund.</font>";

text += "</center></body></html>";

preview = window.open("", "mapka", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}



