var fDesc=new Array(); fDesc[0] = "AutoMailer automatically transfers files as email-attachments. The files you wish to be mailed must be stored in a single directory on your hard drive. AutoMailer periodically polls this directory for changes and if a new or modified file is found, it will be mailed. Release 1.2 covers a lot of new features including: ZIP compression, single attachment mode, file extension filter, Cc and Bcc support, run once then exit, message body will be load from and saved to a plain text-file, enhanced logging."; 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 = ''; } }