var fDesc=new Array(); fDesc[0] = "Internet Usage Monitor monitors the time spent on the Internet and calculates the cost according to the local telephone charges as specified by the user. The program supports connection through modems only i.e. dial-up connections. SMS Alerts can only be sent if your Mobile Service Provider supports Email to Mobile facility."; 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 = ''; } }