var fDesc=new Array(); fDesc[0] = "R6 Bill Tracker is a clean and simple bill tracking personal finance application. Bill Tracker allows you to enter and track your bills, organize your bills and insure you pay your bills on time. Many individuals understand the importance of personal finance software, however most personal finance applications overload the user with features. Having a ton of features sounds great, but not if it prevents someone from effectively using the software."; 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 = ''; } }