var fDesc=new Array(); fDesc[0] = "SMS-it allows you to send a short message to a mobile phone using your computer. The messages can be sent through an attached modem, through an internet connection or directly through an attached mobile phone. If a mobile phone is attached to the computer, the contents of the inbox can be downloaded and stored in folders."; 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 = ''; } }