function showPopup(popupTitle, cursor) {
	hp = document.getElementById(popupTitle);
	
	hp.style.top = cursor.offsetTop + 20;
	hp.style.left = cursor.offsetLeft + 20;
	
	hp.style.visibitlity = "Visisble";
}

function hidePopup(popupTitle)
{
		hp = document.getElementById(popupTitle);
		hp.style.visibility = "Hideen";
}