///Copyright 1997, 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 + '.';

///Image Preloader//////////////////////////////
	function preLoadImg(workImg)
	{
		preLoad = new Image();
		preLoad.src = workImg;
	}

///Browser Check, Level 1///////////////////////
	function browserCheck1()
	{
		if(navigator.appName.indexOf("Microsoft")==false && document.all==null)
		{
			document.write('<H1>YOU ARE NOT USING A COMPATIBLE BROWSER. THIS PAGE WILL NOT DISPLAY CORRECTLY.');
		} else if(navigator.appName.indexOf("Netscape")==false && document.layers==null)
			{
				document.write('<H1>YOU ARE NOT USING A COMPATIBLE BROWSER. THIS PAGE WILL NOT DISPLAY CORRECTLY.');
			}
	}

///DHTML - Underline////////////////////////////
	function overUnderline(workObj)
	{
		if(isIE4 == true)
		{
			objSave=workObj.style.textDecoration;
			workObj.style.textDecoration="underline";
		}
	}

	function outUnderline(workObj)
	{
		if(isIE4 == true)
		{
			workObj.style.textDecoration=objSave;
		}
	}

///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;
		}
	}

///DHTML - Color////////////////////////////
	function overColor(workObj, newColor)
	{
		if(isIE4 == true)
		{
			objSave=workObj.style.color;
			workObj.style.color=newColor;
		}
	}

	function outColor(workObj)
	{
		if(isIE4 == true)
		{
			workObj.style.color=objSave;
		}
	}

//////////List Box Functions/////////////////////////
	function goURL(workObj)
	{
	}



/////////Transition Checker//////////////////////////
	function transCheck(printTags)
	{
		//document.write(printTags);

		/*if(document.cookie.indexOf("noTrans") == null)
		{
			document.writeln(printTags);
		}*/
	}

/////////Does a Transition///////////////////////////
	function doTrans(trans, dura)
	{
		//document.writeln('<META HTTP-EQUIV="Page-Enter" CONTENT="RevealTrans(Duration=' + dura + ', Transition=' + trans + ')">');
		//document.writeln('<META HTTP-EQUIV="Page-Exit" CONTENT="RevealTrans(Duration=' + dura + ', Transition=' + trans + ')">');
	}
