// Javascript ms_look Functions
// Poly Songfack <poly@polystreet.com>


function moverBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#ffff66";
	  d.style.color = "#d12124";
}

function moutBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#6766cc";
	  d.style.color = "#d12124";
}

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 = "#ffff99";
	  d.style.border = "1 solid #f1f1f1";
}

function moutBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#ffffe2";
	  d.style.border = "1 solid #ffffe2";
}


function chColor(thisID,thisColor) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = thisColor;
}





