function OnResOver(el, ancor) {
 el.style.background='#FFE4C7'; 
 el.style.color='#682C60'; 
 ancor.style.color='#682C60';
}

function OnResOut(el, ancor, bgcolor) {
 el.style.background=bgcolor; 
 el.style.color='#31619C'; 
 ancor.style.color='#30619E';
}

