function okno( $dokument, width, height )  {
     	var uchwyt;
        var styl;
        var opt = 'width=' + width + ',height=' + height + ',titlebar=0,resizable=0,scrollbars=no,menubar=no, topmargin=0 , leftmargin=0 , rightmargin="0"'
    	uchwyt = window.open( $dokument, "", opt );
        uchwyt.moveTo(0,0);
		uchwyt.focus();
		return;
}
