﻿function changecolor(el){
    el.style.color="yellow";
}
function restorecolor(el){
    el.style.color="white"
}