function openPopup(child)
{
    if(document.getElementById)
       document.getElementById(child).style.visibility = "visible";
}

function closePopup(child)
{
    if(document.getElementById)
       document.getElementById(child).style.visibility = "hidden";
}