/* common.js */

function highlight(e, f, i) {
    e.style.borderColor = f ? "white" : "#a47182";
    var p = document.getElementById(i);

    if(p) p.style.backgroundColor = f ? "#a47182" : "#ded8fe";

    p = document.getElementById(i + "_link");

    if(p) p.style.color = f ? "white" : "#6f004d";
}

function highlight2(e, f, i) {
    e.style.backgroundColor = f ? "#a47182" : "#ded8fe";
    var p = document.getElementById(i);

    if(p) p.style.borderColor = f ? "white" : "#a47182";

    p = document.getElementById(e.id + "_link");

    if(p) p.style.color = f ? "white" : "#6f004d";
}

function hl(e, f) {
    e.style.backgroundColor = f ? "#a47182" : "#ded8fe";
    p = document.getElementById(e.id + "_link");

    if(p) p.style.color = f ? "white" : "#6f004d";
}

function hl2(e, f) {
    p = document.getElementById(e.id + "_link");

    if(p) p.style.color = f ? "white" : "#6f004d";
}

function selectMember(e, u) {
    window.location = u;
}
