<!--
//this script is better than the macromedia one
//because if the user clicks on a link and the
//browser window pops up, and then that window
//ends up behind the others, this script will
//cause it to regain focus and come to the fore-
//ground if another popup link is clicked

var x = null;

function openWin(theURL,winName,features) 
{
  try
  {
  	if (x)
	{
		x.close();
		x = null;
	}
  }
  catch(err){}
  x = window.open(theURL,winName,features);
  x.focus;
}
//-->
