﻿function togglebackground(item, toggle)
{
alert(item);
    if(toggle)
        item.style.background = '#054924';
    else
        item.style.background = '#b7d694';
}
function changecolor(id, color) { 
element = document.getElementById(id); 

oldcolor = element.currentStyle.background; 
element.style.background = color; 
} 
