/*

*/

function ToggleTo(idx) {
    var p;
    var i = 0;
    while (p = document.getElementsByName("ztab")[i]) {
        i++;
        p.style.color = "#c7651d";
        p.style.fontWeight = "normal";
        p.style.textDecoration = "";

    }

    var e = document.getElementsByName("ztab")[idx];
    if (!e) return true;

    e.style.color = "#58585A";
    e.style.fontWeight = "bold";
    e.style.textDecoration = "none";

    i = 0;
    while (p = document.getElementById("zbox" + i)) {
        i++;
        p.style.display = "none";
    }
    document.getElementById("zbox" + idx).style.display = "block";


    return true;
}