<!-- Copyright 2006 Bontrager Connection, LLC
var cX = 0; var cY = 0;
function UpdateCursorPosition(e){ cX = e.pageX; cY = e.pageY;}
function UpdateCursorPositionDocAll(e){ cX = event.clientX; cY = event.clientY;}
if(document.all) { document.onmousemove = UpdateCursorPositionDocAll; }
else { document.onmousemove = UpdateCursorPosition; }
function AssignPosition(d,vposition) {
d.style.left = (cX+10) + "px";
if ((cX+10)>600)
	{
		d.style.left = (cX-210) + "px"
	}
d.style.top = (cY-vposition) + "px";
}

function HideContent(d) 
	{
		if(d.length < 1) { return; }
		document.getElementById(d).style.display = "none";
	}
function HideContentTimed(d)
	{
		setTimeout("HideContent(" + d + ")",1000);	

		
	}
function ShowContent(d,vposition) 
	{
		if(d.length < 1) { return; }
		var dd = document.getElementById(d);
		AssignPosition(dd,vposition);
		dd.style.display = "block";
	}
//-->