<!--
function cross_Brwindow(theURL, winName, features) {
  var widthX, heightY;
  var vNum = navigator.appVersion.charAt(0);
  var bName = navigator.appName.charAt(0);
  if ( bName == "M" && vNum < 4)
	   location.href="getnewbr.html";
  if ( bName == "N" && vNum < 4)
	   location.href="getnewbr.html";

  if (navigator.appVersion.indexOf("Mac") > -1) {
	   if (bName == "M") {// MAC IE
        widthX = -16;
        heightY = -16;
	   } else {// MAC NN
        widthX = 0;
        heightY = 0;
	   }
  } else {// WIN IE&NN
	     widthX = 0;
      heightY = 0;
  }
  features = new Array(features.substr(0,(features.indexOf(",width=", 0))),
             'width='.concat(parseFloat(features.substring(((features.indexOf("width", 0))+6), (features.indexOf(",height", 0)))) + widthX),
             'height='.concat(parseFloat(features.substring((features.indexOf("height", 0)+7), (features.length))) + heightY));
  window.open(theURL, winName, features);
}
//-->

