   var oldobj = "";

    function fett(obj)
    {
    if (oldobj != "")
    {
    oldobj.style.color="";
    oldobj.style.fontWeight="";
    }
    obj.style.color="B22222";
    obj.style.fontWeight="";
    oldobj = obj;
    }

