
<!--
var thewindow;
function OpenBrWindow(theURL,winName,features) { //v1.0
  if (thewindow) thewindow.close();
  thewindow = window.open(theURL,winName,features);
}
function CloseBrWindow() {
	if (thewindow && !thewindow.closed) {
		thewindow.close();
	}
}
//-->
