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