	var glossWindow  = null
	var basePath     = ""

	// Discern full verions only
	var browserVersion = parseInt(navigator.appVersion)

	if (navigator.appName.indexOf('Explorer') != -1)
	   {var browserName  = 'msie'}
	else
	   {if (navigator.appName.indexOf('Netscape') != -1)
		{var browserName = 'net'}
	    else
		{var browserName = 'other'}
	   }

	// A fully qualified path is needed because the help files reside in
	// different folders.  The following is needed to facilitate migration
	// to the live environments.
	// basePath  = location.protocol;

	// if (location.host.indexOf('dev') == -1)
	//    {basePath += "//plusweb.pierceleahy.com/"}
	// else
	//    {basePath += "//dev_webspeed/"}

//---------------------------------------------------------------------

function focusOn(me){

	// Reset focus to the window if browser is IE4+ or Netscape3+
	if (((browserVersion > 3) && (browserName == "msie")) || ((browserVersion > 2) && (browserName == "net")))
	  {me.focus();}
		}

//---------------------------------------------------------------------
	
	// Set focus to this window
	focusOn(window);

//---------------------------------------------------------------------

function popGloss(bookmark){

	// Pop a small window and populate it with the glossary
	glossWindow = window.open("../hp/glossary.html#" + bookmark,"newWindow","scrollbars=yes,resizable=yes,width=400,height=100");
	focusOn(glossWindow);
				}

//---------------------------------------------------------------------

function closeGloss(){

	// Close the pop if it exists
	if(glossWindow != null)
	  {glossWindow.close();
	   glossWindow = null;}
		     }

//---------------------------------------------------------------------

function popNote(thing){

	// Show the related info only with IE4+
	if (browserName=='msie' && browserVersion>3)
	   {alert(eval(thing + '.innerText'));}
			}

//---------------------------------------------------------------------

function goNowhere(){

	// This is a bogus function because IE 3
	// generates an error when "JavaScript:void(0)" is used in an href
		    }

