
function LL_hideit() {
	eval('mouse_definition.style.visibility="hidden"');
} 
function LL_showit() {
LL_hideit();
	var LL_mousex = event.clientX;
	var LL_mousey = event.clientY;
	var x = LL_mousex - 180;
	if(x < 0) { x = 0; }
	var y = LL_mousey - 10;
	if(y < 0) { y = 0; }
	eval('mouse_definition.style.left="' + x + '"');
		eval('mouse_definition.style.top="' + y + '"');
	eval('mouse_definition.style.visibility="visible"');
	LLx = eval('mouse_definition.style.pixelLeft');
	LLxx = eval('mouse_definition.scrollWidth') + LLx;
	LLy = eval('mouse_definition.style.pixelTop');
	LLyy = eval('mouse_definition.scrollHeight') + LLy;	
}
