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