

    function changeRowColor(buttonID) 
    {
        try {
            document.getElementById(buttonID).click();
        }
        catch (e)
        { };
    }
    
    var overRowBGcolor;
    function makeSelectedColor(row)
    {
        overRowBGcolor = row.style.backgroundColor;
        
        row.style.backgroundColor = '#f7efc6';
        
    }
    function clearSelectedColor(row)
    {
        if(overRowBGcolor != null)
        {
            if(overRowBGcolor != '#f7efc6')
            {
                row.style.backgroundColor = '';
            }
        }
    }
    
    function buttomImageSwap(imageId, imageFileName)
    {
       var imagePath = "/Themes/hawaii/images/";
       var image = document.getElementById(imageId);
       
       if(image != null)
       {
            image.src = imagePath + imageFileName;
       }
    }
