////////////////////////////////////////////////////////////////////////
// Filename     : popup.js
// Purpose      : Create a new web browser window to display material
//
// SCCS ident : @(#)popup.js	1.1 07/02/02
////////////////////////////////////////////////////////////////////////

function document_display(name, loc, opt)
{
    var win;

    win = window.open(loc, name, opt);
    if (win.focus) win.focus();
    if (!win.opener) win.opener = self;
}

function popup_window(loc, w, h)
{
    var opt;

    if (!w) w = 830;
    if (!h) h = 650;
    opt  = 'width=' + w + ',height=' + h;
    opt += ',location=1,toolbar=0,status=0,directories=0,menubar=0';
    opt += ',resizable=1,scrollbars=1';
    document_display("popup", loc, opt);
}

