function ShowPopup(event, popup)
{
	hp = $(popup);
	
	// Set popup to visible
	//var test = (window.event)?window.event:event;
	//alert(event.clientX);
	hp.style.top = event.clientY + 20;
	hp.style.left = event.clientX + 18;

	hp.style.visibility = "Visible";
}

function HidePopup(popup)
{
	hp = $(popup);
	hp.style.visibility = "Hidden";	
}