
function ToprollOn(elem){
if(document.all){
elem.style.background = '#750B06';
elem.style.color = '#FFFFFF';
elem.style.cursor = 'hand';

}}

function ToprollOff(elem){
if(document.all){
elem.style.background= 'DEC04F';
elem.style.color = '#750B06';
elem.style.cursor = 'default';
}}

