var fDesc=new Array(); fDesc[0] = "TwitterCamp is a desktop application that allows you to monitor tweets from your friends using the popular Twitter service. The application was built for the ApolloCamp mini-conference and uses the Adobe AIR runtime and Twitter Search API. The application is especially suited for running on large displays such as plasmas, LCDs, and projectors at conferences. It is simple to customize the interface so that you can use the application for your conference."; 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 = ''; } }