	var tempX = 0;
		var tempY = 0;
		var IdelTime = 0;

		var IE = document.all?true:false;
		if (!IE) document.captureEvents(Event.MOUSEMOVE)
			document.onmousemove = getMouseXY;

		function HideVisibility()
		{
			document.getElementById("DivMoucePointer").style.visibility="hidden";
		}

		function VisibleVisibility()
		{
		}	

		function getMouseXY(e) {
			//HideVisibility();
			//IdelTime = 0;

			if (IE) { // grab the x-y pos.s if browser is IE
				tempX = event.clientX + document.body.scrollLeft+12;
				tempY = event.clientY + document.body.scrollTop+12;
			}
			else {  // grab the x-y pos.s if browser is NS
				tempX = e.pageX+12;
				tempY = e.pageY+12;
			}  
			if (tempX < 0){tempX = 0;}
			if (tempY < 0){tempY = 0;}  
			TmpTop=tempY + 'px';
			TmpLft=tempX + 'px';
			document.getElementById("DivMoucePointer").style.top=TmpTop;
			document.getElementById("DivMoucePointer").style.left=TmpLft;
			document.getElementById("DivMoucePointer").style.visibility="visible";

			return true;
		}


		function MouseTxt(){
	//		IdelTime = IdelTime +50;
	//		if (IdelTime >1000){
	//			VisibleVisibility();
	//		}

		}

//		var int=self.setInterval("MouseTxt()",50);


