

var okienko = null;
function otwozOkienko(url, title, width, height) {
 okienko = window.open("","fotka",'width='+width+',height='+height); void(0);
 var x = (screen.width-width)/2;
 var y = (screen.height-height)/2;
 okienko.moveTo(x,y);
 okienko.document.open();
 okienko.document.write ("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY bgcolor='#ffffff' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><center><a href=\"javascript:window.close()\"><img src="+url+" width="+width+" height="+height+" border=\"0\"/></a></center></BODY></HTML>");
 okienko.document.close();
 okienko.focus();
}
