
function ChangeBgColor (id1,c1,id2,c2) {
document.getElementById(id1).style.background=c1;
document.getElementById(id2).style.color=c2;
}
