/**
* Do highlight tabel rows while scrolling
*
**/
var lastObj;    
function do_over(obj,color) {
        if (obj != lastObj) { obj.style.backgroundColor = '#' + color;
         obj.style.color = 'BLACK'; obj.style.cursor = 'hand';
        }
}
function do_out(obj) {
        if (obj != lastObj) { obj.style.backgroundColor = '';
         obj.style.color = '';
        }
}
