// Javascript ms_look Functions
// Poly Songfack <poly@polystreet.com>


function moverBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f1f1f1";
	  d.style.color = "#00ffff";
}

function moutBG(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#000000";
	  d.style.color = "#ffffff";
}

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 = "#d3d3d3";
	  d.style.border = "1 solid #bebebe";
}

function moutBGS(thisID) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = "#f1f1f1";
	  d.style.border = "1 solid #f1f1f1";
}


function chColor(thisID,thisColor) {
        var d = document.getElementById(thisID);
        d.style.backgroundColor = thisColor;
}





