
function letterIn(table,text) {
 table.style.backgroundColor="#ffffff";
 eval("document.getElementById('" + text + "').style.color='#000000';");
}


function letterOut(table,text) {
 table.style.backgroundColor="#f4f4f4";
 eval("document.getElementById('" + text + "').style.color='#000000';");
}


