function doColor(item, color, bg) {
   item.style.color = color;
   item.style.backgroundColor = bg;
}

function undoColor(item) {
   item.style.color = "";
   item.style.backgroundColor = "";
}
var color2 = "#00cc66"
var bg_color="white"

