function ShowWindow(path, destWidth, destHeight, margins)
{
     

NewWindow=window.open("","Screen","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height="+destHeight+",width="+destWidth);

     if (window.innerWidth) {
       NewWindow.innerWidth  = destWidth + 10;
       NewWindow.innerHeight = destHeight + 10;
     }
     else {
       NewWindow.resizeTo(destWidth + 15, destHeight + 40);
     }

     NewWindow.document.write ("<HTML><HEAD><TITLE>Ekran");
     NewWindow.document.write ("</TITLE></HEAD>");
     NewWindow.document.write ("<BODY leftmargin=\"" + margins + "\" topmargin=\"" + margins + "\" >");
     NewWindow.document.write ("<IMG SRC=\"");
     NewWindow.document.write (path);
     NewWindow.document.write ("\" style=\"cursor: hand\" onclick=\"window.close(); return false\" >");
     NewWindow.document.write ("</BODY></HTML>");
     NewWindow.document.close();
     NewWindow.focus();
}

function ShowHistory(id)
{
     NewWindow=window.open("http://www2.nowoczesnyurzad.pl/Oprogramowanie/historiaWersji.aspx?AppId=" + id,"History","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600");
     NewWindow.focus();
}

function otworz(theURL,winName,features) {
  window.open(theURL,winName,features);
}