var IE = false;
if (navigator.appName == "Microsoft Internet Explorer"){IE = true}
if (!IE){document.captureEvents(Event.MOUSEMOVE)}
document.onmousemove = getMove;

function getMove(m){
if (document.getElementById('transparent').style.display=="block"){
			
	if (IE) {
		var tmpX = event.clientX;
		var tmpY = event.clientY;
	} 
	else {
		var tmpX = m.pageX;
		var tmpY = m.pageY;
	} 
	if (!document.body.scrollTop)
	{
		var iL = document.documentElement.scrollLeft; 
		var iV = document.documentElement.scrollTop;
	}
	else {
		var iL = document.body.scrollLeft; 
		var iV = document.body.scrollTop; 
	}
	x = tmpX + iL; // get the mouse left position
	y = tmpY + iV; // get the mouse top position 
	//alert(x + " - " + y);
	document.getElementById('transparent').style.left = x; // set the pop-up's left
	document.getElementById('transparent').style.top = y; // set the pop-up's top
}
}	// this function shows the pop-up when user moves the mouse over the link
	function ShowLoading()
	{
		document.getElementById('transparent').style.display="block"; // display the pop-up
	}
	// this function hides the pop-up when user moves the mouse out of the link
	function HideLoading()
	{
		document.getElementById('transparent').style.display="none"; // hide the pop-up
	}

