function swapcolor(divID, color) {
   divObj = document.getElementById(divID);
   divObj.style.background = color;
}