// public JavaScript

function newWindow(theLink, theName, theWidth, theHeight, theScroll, theResize, addLevel)
{
    if (addLevel) {
        theLink += '&level=' + document.forms[0].level.value + '&pid=' + document.forms[0].pid.value;
    }
    thewindow=window.open(theLink, theName, 'dependent=yes,titlebar=yes,status=no,menubar=no,scrollbars='+theScroll+',width='+theWidth+',height='+theHeight+',resizable='+theResize+',screenX=100,screenY=100');
    thewindow.focus();
    return false;
}

function closeWindow()
{
    window.opener.focus();
    window.close();
    return false;
}

function closeRefresh()
{
    window.opener.focus();
    //window.opener.location.reload();
    window.close();
    return false;
}


