function clickButton(e, buttonid)
{   
    var evt = e ? e : window.event;
    var bt = document.getElementById(buttonid);
    if (bt)
    {
        if (evt.keyCode == 13)
        {            
            bt.click();
            return false;
        }
    }
}

function toggleAccordian(e)
{    
    if (e.target.style.backgroundColor == "#f1a5a1")
        e.target.style.backgroundColor = '#ffffff';
    else
        e.target.style.backgroundColor = '#f1a5a1';         
    
}
