﻿// JScript File
function ShowAnons(e, id)
{
		var d = document.getElementById(id);
		
		if(d == null)
		{
//			alert(id + 'not found');
			return;
		}
		MouseX = e.clientX + document.body.scrollLeft;
		MouseY = e.clientY + document.body.scrollTop;
//alert(MouseX + ' ' + MouseY);
//		d.style["top"]=MouseY.toString();
//		d.style["left"]=MouseX.toString();
			
		d.style["display"]="block";
		d.style["z-index"]="10000";
		d.style["position"]="absolute";
}
function HideAnons(id)
{
		var d = document.getElementById(id);
		if(d == null)
			return;
		d.style["display"]="none";
		d.style["z-index"]="-1";
		d.style["position"]="absolute";
	
}
//-->    


