﻿function showSubNav(id, width) {
    document.getElementById(id).style.display = 'block';
    document.getElementById(id).style.width = width;
}
function hideSubNav(id) {
    document.getElementById(id).style.display = 'none';
}
