
	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) {
	    x = (ie) ? event.clientX + document.body.scrollLeft : e.pageX;
	    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;
	}	
	function show_info(div_id) {
		<?
		if(nc_get_conf('use_flyover') != 'checked')
			echo 'return false;'."\n";
		?>
		document.getElementById(div_id).style.visibility 	= "visible";
		document.getElementById(div_id).style.left  			= (global_x+10) + "px";
		document.getElementById(div_id).style.top 				= (global_y-60) + "px";
	}
	function hide_info(div_id) {
		<?
		if(nc_get_conf('use_flyover') != 'checked')
			echo 'return false;'."\n";
		?>
		document.getElementById(div_id).style.visibility 	= "hidden";
	}
	