function MM_openBrWindow(theURL,winName,features,w,h) { //v2.0
  var l_center = (screen.width/2)-(w/2);
  var t_center = (screen.height/2)-(h/2);
  
  var l_right = (screen.width-(w+11));
  var t_top = 0;
  
  window.open(theURL,winName,features+",width="+w+",height="+h+",left="+l_right+",top="+t_top);
}
