
function openPopUpWindow(strURL, pixW, pixH, blnSB)
{
    var strSB = "no"
    strLocation = strURL;
    strWHandle = "UD_WINDOW";
    if (blnSB) {strSB = "yes"};
    strProps = "resizable=yes,scrollbars=" + strSB + ",toolbar=no,location=no,directories=no,status=no,menubar=no,width=" + pixW + ",height=" + pixH + ",top=10,left=10";
    window.open(strLocation, strWHandle, strProps);
}
