function highlightTickets(e,bool)
{
    if(bool=="TRUE")
    { 
        e.style.backgroundColor="#fff69d";
    }
    else
    {
         e.style.backgroundColor="#ffffff";
    }  
}

