function changeCss(obj, bgColor,ftColor) {

           if (document.getElementById) {
                obj.style.backgroundColor = bgColor;
                obj.style.color = ftColor;
                
        }
}

function hom(obj, ftColor) {
           if (document.getElementById) {
           obj.style.color = ftColor;
        }
}