// JavaScript Document

function show_div(id) {
	var e=window.event || arguments.callee.caller.arguments[0];
	var x = e.clientX
	var y = e.clientY
	var divObj = document.getElementById(id);
	divObj.style.visibility = 'visible';
	divObj.style.top = y;
	divObj.style.left = (x + 10);
}

function hide_div(id){
	divObj = document.getElementById(id);
	divObj.style.visibility = 'hidden';
}