function MM_openBrWindow(theURL,winName,features) 	
{
	   var offX = screen.width - screen.width / 2 - 50;
           var offY = screen.height - screen.height/ 2 - 300 ;
           if (offY < 10) { offY = 10; };
           popupWindow = window.open(theURL, winName, features);
    	   popupWindow.moveTo(offX,offY);
           popupWindow.focus();
		}
