function change_bg(el) {
    el.style.backgroundColor= "#ff0000";
    el.style.color= "#ffffff";
}

function bg_back(el) {
    el.style.backgroundColor= "#eeeeee";
    el.style.color= "#000000";
}
