// Javascript Default Look Functions
// Poly Songfack <poly@polystreet.com>


function moverBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffff0";
}

function moutBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#6495ED";
}

function moverBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#ffffff";
}

function moutBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#F0F8FF";
}

function moverBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#ffffff";
}


function moutBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffff0";
}




function chColor(thisID,thisColor) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = thisColor;
}

