		var cursor = {x:0, y:0};
		if (navigator.appName=="Netscape")
		{
			document.captureEvents( Event.MOUSEMOVE );
			document.onmousemove = getCoord;
		}

		function getCoord( event )
		{
			cursor.x = event.pageX;
			cursor.y = event.pageY;
		}
function show_object(main_object, object_id) {
		//alert(object_id);
		if(cursor.y != 0){
			//cursor.y = 10;
		}
		if (navigator.appName=="Netscape"){
			cursor.x += 80;
			cursor.y += 0;
		}
		else{
		    var doc = document.documentElement;
		    var doc_body = document.body;
		    cursor.x = event.clientX + (doc.scrollLeft || document.getElementById(main_object).scrollLeft) - (doc.clientLeft || 0) + 80;
		    cursor.y = event.clientY + (doc.scrollTop || document.getElementById(main_object).scrollTop) - (doc.clientTop || 0) + 0;
		}
		
		document.getElementById(object_id).style.display = "block";
		document.getElementById(object_id).style.left = cursor.x + 'px';
		document.getElementById(object_id).style.top = cursor.y + 'px';
	
}
function hide_object(object_id){
	document.getElementById(object_id).style.display = "none";
}
	
