<!--
	////////////////////////
	// browser test const //
	////////////////////////
		var num = parseFloat(navigator.appVersion);
		var browserVer = GetBrowserVersion(num);
	

	
	//////////
	// util //
	//////////
		function hilite(imgDocID,imgObjName)
		{
			// manages mouseOver animations
			//   imgDocID - the name or number of the document image to be replaced
			//   imgObjName - the name of the image object to be swapped in
	
			if(browserVer == 1)
			{
			    document.images[imgDocID].src = eval(imgObjName).src
			}
		}
	
		function GetBrowserVersion(num)
		{
			return ((navigator.appName == "Netscape") && (num >= 3))
					? 1
					: ((navigator.appName == "Microsoft Internet Explorer") && (num >= 4))
						? 1
						: 2;
		}
//-->