
function openimg(img,w,h) {

        winscroll='no';

        if (h>screen.height-80) {h=screen.height-80;w+=40;winscroll='yes';}
        if (w>screen.width-40) {w=screen.width-40;winscroll='yes';}

        px=screen.width/2-w/2;
        py=screen.height/2-h/2-40;
        
        win=open('','','left='+px+',top='+py+',width='+w+',height='+h+',scrollbars='+winscroll+',toolbars=no');
        win.document.write("<html><head><title></title><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
        win.document.write("<img src='"+img+"'>");
        win.document.write("</body></head></html>");
}

function openpage(page,w,h) {

        winscroll='no';

        if (h>screen.height-80) {h=screen.height-80;w+=40;winscroll='yes';}
        if (w>screen.width-40) {w=screen.width-40;winscroll='yes';}

        px=screen.width/2-w/2;
        py=screen.height/2-h/2-40;
        
        win=open(page,'','left='+px+',top='+py+',width='+w+',height='+h+',scrollbars='+winscroll+',toolbars=no');
}
