﻿function showSubMenu(id, sh) {
    var tar = document.getElementById(id);
    if (sh == 'show')
        tar.style.display = 'block';
    else
        tar.style.display = 'none';
    //alert(tar);
}