function MM_openBrWindow(theURL,winName, width, height) { //v2.0

	var popupWinX = width;
	var popupWinY = height;
	
	var screenX = screen.width;
	var screenY = screen.height;

	var winX = (screenX/2)-(popupWinX/2);
	var winY = (screenY/2)-(popupWinY/2);

	
  window.open(theURL,winName,'width='+width+',height='+height+',left='+winX+',top='+winY);
	
}