function htmledit_popupkep(page)
    {
      w = 1;
      h = 1;
      l = 0;
      t = 0;
      settings = 'scrollbars=no,resizable=no,status=no,menubar=no,width=' + w + ',height=' + h + ',left='
                 + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t;
      win = window.open(page, 'img_popup', settings);
      win.focus(); 
}
function htmledit_popuppage(page, w, h)
    {
    if (w == null)
        {
        w = 780;
        }

    if (h == null)
        {
        h = 530;
        }

    l = (window.screen.width - (w + 10))/2;
    t = (window.screen.height - (h + 78))/2;
    settings = 'scrollbars=yes,resizable=no,status=no,menubar=no,width=' + w + ',height=' + h + ',left='
                 + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t;
    win = window.open(page, 'other_popup', settings);
    win.focus();
    }