// Javascript es300_look Functions
// Poly Songfack <poly@polystreet.com>


function moverBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f1f1f1";
	d.style.color = "#ff4500";
}

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

function moverBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffffa";
        d.style.color = "#ff4500";
        d.style.border = "1px solid #708090";
}

function moutBGM(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f5f5f5";
        d.style.color = "#000000";
	d.style.border = "1px solid #f5f5f5";
}

function moverBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#fffffa";
        d.style.color = "#ff4500";
        d.style.border = "1px solid #708090";
}

function moutBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f5f5f5";
        d.style.color = "#000000";
	d.style.border = "1px solid #f5f5f5";
}


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





