var fDesc=new Array(); fDesc[0] = "SMS Reception Center is a program that reads incoming short messages from a cellular phone and, for each message, executes the actions that you specified. Unlike other popular desktop SMS utilities, its main purpose is to handle incoming messages and send outgoing ones without any human intervention. Usually it's set up at the computer with a dedicated cellular phone or a GSM modem plugged in. The program can run either as a Windows NT service or as a usual desktop application."; 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 = ''; } }