	var global_x = 0;
	var global_y = 0;

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

	function getPosXY(e) {
		var x = (ie) ? event.clientX + document.body.scrollLeft : e.pageX;
		var y = (ie) ? event.clientY + document.body.scrollTop : e.pageY;
		
		
		if(x < 0) { x = 0; }
		if(y < 0) { y = 0; }
		global_x = x;
		global_y = y;
	}
	/*left*/
	function show_info_0(div_id) {
		//alert(x+'-'+y);
		document.getElementById(div_id).style.visibility = "visible";
		document.getElementById(div_id).style.left = (global_x-250) + "px";
		if (ie) {
			document.getElementById(div_id).style.top = (global_y+150) + "px";
		} else {
			document.getElementById(div_id).style.top = (global_y-200) + "px";
		}
	}
	/*right*/
	function show_info_1(div_id) {
		//alert(x+'-'+y);
		document.getElementById(div_id).style.visibility = "visible";
		document.getElementById(div_id).style.left = (global_x-520) + "px";
		if (ie) {
			document.getElementById(div_id).style.top = (global_y+150) + "px";
		} else {
			document.getElementById(div_id).style.top = (global_y-200) + "px";
		}
	}
	function hide_info(div_id) {
		document.getElementById(div_id).style.visibility = "hidden";
	}

