<!-- #include virtual="/Include/CSS/Colors.inc" -->
// The follow tag is actually commented and not parsed.  It forces InterDev to parse the code as JavaScript.
// <SCRIPT Language="JavaScript">

<% If Session("Netscape") Then %>
var ie = false;
var ns = true;
<% Else %>
var ie = true;
var ns = false;
<% End If %>
	
function Highlight(id, hl, caption)
{
	
	return true;
}


function SetMouseOver(obj, caption, bHighlight)
{
	if (bHighlight)
	{
		window.status = caption;
		if (ie)
		{
			//alert(event.fromElement.tagName);
			//obj.parentElement.parentElement.parentElement.style.backgroundColor = "#00007E";		
			//alert(obj.parentElement.parentElement.parentElement.parentElement.tagName);
			obj.parentElement.parentElement.parentElement.parentElement.style.borderColor = "<%=stLightColor2%>";
		}
	}
	else
	{
		window.status = window.defaultStatus;
		if (ie)
		{
			//alert(event.fromElement.tagName);
			//obj.parentElement.parentElement.parentElement.style.backgroundColor = "transparent";		
			obj.parentElement.parentElement.parentElement.parentElement.style.borderColor = "#1C1C8C";
		}
	}

	return true;		
}