var linktt = null;
document.onmousemove = movelinktt;

function movelinktt(e) 
{
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	
	if (linktt != null) {
		linktt.style.left = (x + 15) + "px";
		linktt.style.top = (y + 15) + "px";
	}
}

function showlinktt(txt) 
{
	linktt = document.getElementById(1);
	linktt.style.display = "block"
	
	linktxt = document.getElementById(2);
	linktxt.innerHTML = txt;
}

function hidelinktt() 
{
	linktt.style.display = "none";
}
