function MM_openBrWindow(theURL,winName,features)
{
	 if (document.thewindow != null) {
		 thewindow.close
	 };
	 thewindow = window.open(theURL,winName,features);
	 if (window.focus) {
		 thewindow.focus();
	 }
	 return thewindow;
}

