	var tempX;
	var tempY;
	var gotfocus = 0;

	function hand(){
	window.document.body.style.cursor = "pointer";

	}

	function handout(){
	 window.document.body.style.cursor = "auto";
	}

	function focused(idf){
	
		gotfocus = gotfocus + 1;		
		if (gotfocus == 2){
		gotfocus = 0;
		}
		
	}

	function getMouseXY(e) {

		var IE = document.all?true:false;

		if (IE) {
		tempX = event.clientX + document.body.scrollLeft;
		tempY = event.clientY + document.body.scrollTop;
		} else {
		tempX = e.pageX;
		tempY = e.pageY;
		}
	}


	function overtable(){

		var IE = document.all?true:false;

			if (!IE) document.captureEvents(Event.MOUSEMOVE)
			document.onmousemove = getMouseXY;
	}



	function floatover(idd){
	
	
 	window.document.body.style.cursor = "pointer";
 	
 	if (gotfocus == 0){
	var IE = document.all?true:false;

		if (!IE) document.captureEvents(Event.MOUSEMOVE)
		document.onmousemove = getMouseXY;


	thediv=document.getElementById(idd).style;


	thediv.visibility = "visible";
	thediv.left = tempX + 2;
	thediv.top = tempY + 2;
	thediv.height = "auto";
	thediv.width = "180px";
	}
	
	}

	function floatout(ide){
	
	
	window.document.body.style.cursor = "auto";
	
	if (gotfocus == 0){
	thediv=document.getElementById(ide).style;

	thediv.visibility = "hidden";
	thediv.height="0px";
	thediv.width="0px";
	}

	}


