function Showpath(id) {
    for (var i = 0; i < 6; i++) {
        var path2n = document.getElementById("path2n" + i);
        var path2c = document.getElementById("path2c" + i);
        if (i == id) {
            path2n.style.position = "relative";
            path2c.style.display = "";            
        }
        else {
            path2n.style.position = "";
            path2c.style.display = "none";
        }
    }
}
function Showpath2(id) {
    for (var i = 0; i < 6; i++) {
        var path2n = document.getElementById("path2n" + i);
        var path2c = document.getElementById("path2c" + i);
        if (i == id) {
            path2n.style.position = "";
            path2c.style.display = "none";
        }
        else {
            path2n.style.position = "";
            path2c.style.display = "none";
        }
    }
}
