﻿function showElement(id) {
    document.getElementById(id).style.display = 'block';
}
function hideElement(id) {
    document.getElementById(id).style.display = 'none';
}
