<!--
 function okno(title, url, width, height) {
    var day=new Date();
    var id=day.getTime();
    var okienko = window.open(url,id,'width=' + width + ',height=' + height + ',resizable=1,scrollbars=0,menubar=0');
    okienko.focus(1);
 }

 function okno2(title, url, width, height) {
        var okienko = window.open(url,title,'width=' + width + ',height=' + height + ',resizable=1,scrollbars=1,menubar=0');
    okienko.focus(1);
 }
//-->
