<!--
browser_name = navigator.appName;
	browser_version = parseFloat(navigator.appVersion); 
	
	var roll = false
  
  var is_ie = false
  var is_nav = false
  var PrintWindow
  

  if ( browser_name == "Netscape" )
  {
    is_nav = true
	  if ( browser_version >= 3.0 )
	  {
		  roll = true
	  }
  }


  if ( browser_name == "Microsoft Internet Explorer" )
  {
    is_ie = true
    if ( browser_version >= 3.0 )
		  roll = true
  }

function popUpWin(url, newTool, newLocation, newStatus, newMenubar, newResizable, newScrollbars, newWidth, newHeight, newLeft, newTop) 
	{
		if (is_ie || is_nav) 
		{
			if (PrintWindow != null && !PrintWindow.closed) 
			{
      oldWin = PrintWindow;
      oldWin.name = "oldWin";
      oldWin.close();
    }
		}
		PrintWindow=window.open(url,"newWin","toolbar=" + newTool + ",location=" + newLocation + ",status=" + newStatus + ",menubar=" + newMenubar + ",resizable=" + newResizable + ",scrollbars=" + newScrollbars + ",width=" + newWidth + ",height=" + newHeight + ",left=" + newLeft + ",top=" + newTop);
		if (PrintWindow.opener == null)
		{
  	PrintWindow.opener = popupWin;
  }
		PrintWindow.opener.name = "origWin";
  PrintWindow.focus();
}
function closeWin()
	{
		this.close();
		PrintWindow = null;
	}

