<!-- Begin
function doColor(item, color, bg) {
item.style.color = color; // changes text color
item.style.backgroundColor = ""; // changes background
}

function undoColor(item) {
item.style.color = "#C0C0C0"; // sets color back to black
item.style.backgroundColor = ""; // sets background to default
}
//  End -->
