function OtworzOkno(theURL,winName,features, myWidth, myHeight, isCenter) { 
  if(window.screen)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  var winNamex=Math.random();
  winNamex=winNamex.toString();
  winNamex=winNamex.substring(4,8); 
  var fotka=window.open("",winNamex,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight+',scrollbars=no,statusbar=no');
  var title = 'Photo';  
  var head = '<html><head><title>'+title+'</title></head>';
  var body = '<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">'+'<img src=\"'+theURL+'\" width=\"'+myWidth+'\" height=\"'+myHeight+'\" border=\"0\"></body></html>';
  fotka.document.write(head + body);
  fotka.focus();
  fotka.document.close();
}