﻿function changeColor(id, color) { 
element = document.getElementById(id); 
oldColor = element.currentStyle.background; 
element.style.background = color; 
} 
