function popup( strPicURL, intPicWidth, intPicHeight, strWindow)
{
   var popup;
   blnScrl = 0;
   blnResizable = 0;
   intPadding = 0;        // dla obu krawedzi
   intScreenWidth = screen.availWidth;
   intScreenHeight = screen.availHeight;

   intPopupLeft = Math.round( ( intScreenWidth - intPicWidth ) / 2 );
   intPopupTop = Math.round( ( intScreenHeight - intPicHeight ) / 2 );
   // zwiekszenie okna o rozmiar ramki
   intPopupWidth = parseInt(intPicWidth) + 10;
   intPopupHeight = parseInt(intPicHeight) + 30;

 
  strParam = "menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars="+blnScrl+",resizable="+blnResizable+",";
  strParam += "width="+intPopupWidth+",height="+intPopupHeight+",top="+intPopupTop+",left="+intPopupLeft;
  
  
  
     popup = window.open('popup.php?src='+strPicURL,'console', strParam);
  
     popup.resizeTo(intPopupWidth, intPopupHeight);  

  
  oldURL = strPicURL;

  
  checkWindow(popup);
  popup.focus();
  
 
}
//*
function checkWindow(popup) 
{
   if (popup && popup.closed) 
   {
      focus();
      return false;
   }
   setTimeout("checkWindow()", 500);
}//*/
