function changeColor(idObj,colorObj)    {        document.getElementById(idObj.id).style.color = colorObj;    } 
