
//定义新开窗口显示网页函数 -->

var newWindow = null;
function openWin(theURL,winName,features)
{       
        if (! newWindow || newWindow.closed)
        {
        newWindow = window.open(theURL,winName,features);
        }else
        {
                newWindow.focus();
        }
}
//结束 -->

