var fDesc=new Array(); fDesc[0] = "Connection Keeper is a program for dial-up Internet users. It simulates Internet browsing (at a random interval) to prevent your connection from appearing idle, thus preventing your ISP from dropping the connection due to inactivity. Connection Keeper can also close various popup windows, such as those asking if you wish to stay connected. In case the connection gets dropped, Connection Keeper can automatically dial back in."; 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 = ''; } }