//------------------------------------------------------------------------------
function PopWin(gstrRoot, astrPath)
{
    newWindow = open(gstrRoot + astrPath + '?PageMode=PopUp', 'popwin', 'toolbar=no,location=0,directories=0,status=no,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width=715,height=400');
    newWindow.focus();
    return false;
}
