//openBrWin basic open new browser window DW8

function OpenBrWindow(theURL,winName,features, mWidth, mHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var mLeft = (screen.width-mWidth)/2.1;
    var mTop = (screen.height-mHeight)/2.3;
    features+=(features!='')?',':'';
    features+=',left='+mLeft+',top='+mTop;
  }
  window.open(theURL,winName,features+((features!='scrollbar=yes')?',':'')+'width='+mWidth+',height='+mHeight);
}