Project

General

Profile

1
function showSubs(id){
2
    var subs = document.getElementById(id);
3
    if (subs != null){
4
        if (subs.style.display == "none"){
5
            subs.style.display = "block";
6
        }
7
        else{
8
            subs.style.display = "none";
9
        }
10
    }
11
    var subExpand = document.getElementById(id + "-expand");
12
    if (subExpand != null){
13
        if (subExpand.style.display == "none"){
14
            subExpand.style.display = "inline";
15
        }
16
        else{
17
            subExpand.style.display = "none";
18
        }
19
    }
20
}
(5-5/5)