        function newwindow(t, width, height) {
                
                s=new Image();
                s.src=t
            
                if ( parent.prozor) { prozor.close(); }
                prozor=window.open("","new",'resizable=no,scrollbars=yes,left=20,top=20,asreenx=20,screeny=20,width=' + width + ', height=' + height);
                prozor.document.open();
                prozor.document.write("<html><head><title>Pizzeria Pansion MARIO</title>");
                prozor.document.write("</head><body  leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><div align='center'><table height='100%' cellspacing='0' cellpadding='0' border='0'><tr><td align='center' valign='middle'>");
                prozor.document.write("<a href='#' onClick='window.close()'><img src='"+s.src+"'alt='close window' border='0'></a></td></tr></table></div></body></html>");
                prozor.document.close();
                
        }
