// JavaScript Document


function change (myCell){
    myCell.setAttribute("style", "background-color: #111111;");
    myCell.firstChild.setAttribute("style", "color: #ffffff;");
}

function undo (myCell){
   myCell.setAttribute("style", "background-color: #ffffff;");
   myCell.firstChild.setAttribute("style", "color: #111111;");


}
