<!--
function MM_openBrWindow(theURL,winName,features) 
{ //v2.0
  window.open(theURL,winName,features);
  return false;
}

var newWindow=""
function MM_openBrWindow(theURL,winName,features)
{
	if(newWindow=="")
	{
	newWindow=window.open(theURL,winName,features);
	}
	else
	{
	newWindow.close();
	newWindow=window.open(theURL,winName,features);
	}
	return false;
}
-->