var univers,hp,rs;


  function ShowPopup(univers)
    {
     hp = document.getElementById(univers);
     hp.style.visibility = "Visible";
    }

  function HidePopup(univers)
    {
     hp = document.getElementById(univers);
     hp.style.visibility = "Hidden";     
    }
