function MM_openBrWindow(theURL,winName,features,windowWidth,windowHeight){
	var myWindow = window.open(theURL,winName,features);
	myWindow.moveTo( (window.screen.width/2)-windowWidth/2, (window.screen.height/2)-windowHeight/2 );
	myWindow.focus();
}