// JavaScript Document
function showPopup(id)
{
    var obj = document.getElementById(id)
        
    obj.style.marginTop = "-" + parseInt(obj.offsetHeight / 2) + "px";
    obj.style.marginLeft = "-" + parseInt(obj.offsetWidth / 2) + "px";
    obj.style.visibility = "visible";
}
