var fDesc=new Array(); fDesc[0] = "This program allows you to send internet mail directly from a Windows PC to its destination on the internet, and it will also accept email from other servers for you. You can use any standard email program to read and write messages, like Microsoft Outlook Express. If you have a PC network, all the PC's can send and receive email through the server with a single internet dial-up connection"; 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 = ''; } }