function toggleBgColor(elem)
{
    var style2 = elem.style;
    style2.backgroundColor = style2.backgroundColor? "":"#CCCCCC";
}