<!-- logic_brwin.js
var g_BRWinOpenFunctionDef=window.open;window.open=fnBRWinOpenDis;function fnBRWinOpenDis() {return true;}
function fnBRWinOpen(sDoc, sName, iToolBar, iLocation, iDirectories, iStatusBar, iMenuBar, iScrollBars, iResizable, iCopyHistory, iWidth, iHeight, bFocus) { var sWinName, oWindow;if (!iToolBar) iToolBar=0;if (!iLocation) iLocation=0;if (!iDirectories) iDirectories=0; if (!iStatusBar) iStatusBar=0; if (!iMenuBar)   iMenuBar=0; if (!iScrollBars) iScrollBars=0;  if (!iResizable) iResizable=1;  if (!iCopyHistory) iCopyHistory=0;  if (!iWidth)   iWidth=600; if (!iHeight)  iHeight=540; sWinName="openwinchild"; if(sName) sWinName="openwinchild" + sName; window.open=g_BRWinOpenFunctionDef; oWindow = window.open(sDoc,sWinName,"toolbar=" + iToolBar + ",location=" + iLocation + ",directories=" + iDirectories + ",status=" + iStatusBar + ",menubar=" + iMenuBar + ",scrollbars=" + iScrollBars + ",resizable=" + iResizable + ",copyhistory=" + iCopyHistory + ",width=" + iWidth + ",height=" + iHeight); if(bFocus) {    oWindow.focus(); } window.open=fnBRWinOpenDis; }
// end of ignore -->