var fDesc=new Array(); fDesc[0] = "LetSys is a program for short term vacation rental management. It is perfect for those who handles holiday cottage bookings. It can automatically produce various reports, accounts, letters, and financial data. You can also see the forecast income, and compare your booking progress with previous years."; 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 = ''; } }