///Copyright 1998 River Info(tm)
///All rights reserved

var objSave;
var isIE4=false;
var isNC4=false;

	if(navigator.appName=="Microsoft Internet Explorer" && navigator.appVersion.substring(0,3)=="4.0") { isIE4=true; }
	if(navigator.appName=="Netscape" && navigator.appVersion.substring(0,1)=="4") { isNC4=true; }

	self.defaultStatus = document.title + '.';

///DHTML - Bold////////////////////////////
	function overBold(workObj)
	{
		if(isIE4 == true)
		{
			objSave=workObj.style.fontWeight;
			workObj.style.fontWeight="bold";
		}
	}

	function outBold(workObj)
	{
		if(isIE4 == true)
		{
			workObj.style.fontWeight=objSave;
		}
	}