function mouse_move(obj,t) {
     var
     NS4 = (document.layers) ? 1 : 0;
     IE = (document.all) ? 1 : 0;
     obj.bgColor = "silver";
 }
   
function mouse_out(obj) {      
    obj.bgColor = obj.style.backgroundColor;
 } 

