
function ToprollOn(elem){
if(document.all){
elem.style.background = '#5D9A23';
elem.style.color = '#ffffff';
elem.style.cursor = 'hand';

}}

function ToprollOff(elem){
if(document.all){
elem.style.background= '#1F621D';
elem.style.color = '#ffffff';
elem.style.cursor = 'default';
}}


