﻿/*
 * Displays the popup with the passed id.
 */
function displayPopup(id)
{
    document.getElementById(id).style.display = "inline";
}

/*
 * Hides the popup with the passed id.
 */
function closePopup(id)
{
    document.getElementById(id).style.display = "none";
}