function showMenu(e)
{
	
	originator = (document.all)? window.event.srcElement: e.target;
	alert(originator.name);
	document.getElementById("about").style.display="block";
	
}
