function OnMouseOverTasto(el, ancor) {
 el.style.background='#DFA5A5'; 
 el.style.color='#8B2121'; 
 ancor.style.color='#8B2121';
}

function OnMouseOutTasto(el, ancor) {
 el.style.background='#BFBFBF'; 
 el.style.color='#717171'; 
 ancor.style.color='#717171';
}

