<!--
function MP_openBrWindow(theURL,winName,features, wid, hei) {//v2.0 modified
LeftPosition = (screen.width) ? (screen.width-wid)/2 : 0;
TopPosition = (screen.height) ? (screen.height-hei)/2 : 0; 
featuresAll = features + ',top ='+TopPosition+',left='+LeftPosition
  window.open(theURL,winName,featuresAll);
}
-->