var fDesc=new Array(); fDesc[0] = "TwitterLocal used to watch the Twitter public feed, caching all Tweets with a valid location. People were able to generate feeds from this site based on location, as well as use the TwitterLocal AIR client to subcribe to location feeds.
Now that Twitter has a location-based search API, it doesn't have to cache the posts anymore. So now, TwitterLocal is going to be purely an Adobe AIR-based application that allows you to filter Tweets by location.
Requires Adobe AIR version 1.5."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }