function cambiarColor(obj,color)
{
    if(obj.style.backgroundColor!=color) {
    obj.style.backgroundColor=color;
    cambiarMouse(obj);
    }
}

    function cambiarMouse(obj)
    {
     if(navigator.appName=="Opera"  || navigator.appName=="Mozilla" || navigator.appName=="Netscape")
           obj.style.cursor="pointer";
       else
           obj.style.cursor="hand";
    }
