        function highlightIt(obj, bool) {
    
            if(bool) {
            
                obj.style.color = "#92cd37";
            
            } else {
            
                obj.style.color = "black";
                
            }
        
        }