<tr align="center" id="Row0002305" class="BgDarkRow" onclick="changeBG('Row0002305');"><td>12121212</td></tr>function changeBG(RowID)
{
    if(document.all)
    {
        var Row = document.getElementById(RowID)
        var BackGround = Row.style.background.toUpperCase();
        if (BackGround.match("#FFB062"))
        {
            Row.style.background = "#FFFFFF";
        }
        else
        {
            Row.style.background = "#FFB062";
        }
    }
}