
function okno(title, url, width, height)
{
  
  this.w = screen.width;
  this.h = screen.height;
  
  if(this.w > width + 150)
  {
    this.width2 = width;
  }
  else
  {
    this.width2 = this.w - 150;
  }
  
  if(this.h > height + 150)
  {
    this.height2 = height;
  }
  else
  {
    this.height2 = this.h - 150;
  }
  
  this.scrleft = (this.w - this.width2) / 2;
  this.scrtop = (this.h - this.height2) / 2;
  
  //resizable=no,menubar=no,scrollbars=yes,status=no,width=540,height=400,left=' + scrleft + ',top=' + scrtop)
  
  if(title == 'popup') {
    var urlStrony = url;
  }
  else {
    var urlStrony = false;
  }
  
  win = window.open(url, '', 'resizable=no,menubar=no,scrollbars=auto,status=no,width='+ this.width2 +',height='+ this.height2 +',left=' + this.scrleft + ',top=' + this.scrtop);
  status = urlStrony;
  
  if(!urlStrony) {
    this.html = '<html>'+
    '<head>'+
    '<title>'+title+'</title>'+
    '</head>'+
    '<body margintop="0" marginleft="0" marginheight="0" marginwidth="0" style="margin: 0px" scroll="auto">'+
    '<a href="javascript:window.close()"><img width="'+width+'" height="'+height+'" src="'+url+'" border="0" alt="Zamknij okno" /></a>'+
    '</body>'+
    '</html>';
    win.document.write(this.html);
    win.document.close();
  }
  
}

