<!--
 function okno(title, url, width, height) {
   var okienko = window.open(url,title,'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no' );
 }

 function expandOkno(title, website, width, height) {
   var heightspeed = 10; // vertical scrolling speed (higher = slower)
   var widthspeed = 15;  // horizontal scrolling speed (higher = slower)
   var leftdist = 0;    // distance to left edge of window
   var topdist = 0;     // distance to top edge of window
   
   var winwidth = width+12;
   var winheight = height+38;
   var sizer = window.open(website,title,"left=" + leftdist + ",top=" + topdist + ",width=1,height=1,status=no,scrollbars=no,resizable=yes,toolbar=no,location=no,directories=no,menubar=no,scrolling=no");
   for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed) {
     sizer.resizeTo("1", sizeheight);
   }
   for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) {
     sizer.resizeTo(sizewidth, sizeheight);
   }
   sizer.resizeTo(winwidth, winheight);
   //sizer.location = website;
 }


//-->

