﻿// JScript File
function openWin(thePage,theW,theH)
{
    window.open (thePage, 'newwindow', 'height='+theH+', width='+theW+', top=0, left=0, toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no')
}

function dispInParentWin(thePage)
{
    opener.location.href = thePage;
}