﻿// JScript File

function PopupWindow( sUrl, bAsPopup, nWidth, nHeight )
{
//alert( sUrl );
    var sPop = "";
    if( bAsPopup ) { sPop = "width=" + nWidth + ",height=" + nHeight + ",location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes"; }
    return window.open( sUrl, "_blank", sPop );
}


