﻿function changecolor(x) {
    document.getElementById(x).style.backgroundColor = "yellow";
}

function leavecolor(x) {
    document.getElementById(x).style.backgroundColor = "white";
}
