//Insert this in the body tag :
//<DIV class=popalt id=altlink></DIV>
//<script src="tooltip.js" type=text/javascript><'/script>

docOK = document.getElementById;
if (docOK)
	{
	alt = document.getElementById("altlink").style;
	if(navigator.appName.substring(0,3) == "Net")
		document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = get_mouse;
	}

function altpop(msg)
{
var content ="<div align=\"right\" class=\"alttitle\">Help</div><DIV class=\"altdiv\"><div class=\"alttext\">"+msg+" </div></DIV>";

	if (docOK)
		{
	  	document.getElementById("altlink").innerHTML = content;
	  	alt.visibility = "visible";
  		}
}

function get_mouse(e)
	{
		var x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
		var y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
		if (x > 580)
		{
			alt.left = x-x/4;
		}
		else if(x < 200)
		{
			alt.left = x-x/3;
		}
		else
		{
			alt.left = x-x/2;
		}
		if (y > 350)
		{
			alt.top = y-y/5;
		}
		else if (y < 115)
		{
			alt.top = y+75;
		}
		else
		{
			alt.top = y+y/6;
		}
	}

function klink()
	{
	if (docOK)
  		alt.visibility = "hidden";
	}

// Insert this for the link
//<A onMouseOver="altpop('msg');" onmouseout="klink()" href="link.html"></a>
