var fDesc=new Array(); fDesc[0] = "With Random Quostes Insert you can add famous quotes to outgoing email. By using this program, outgoing emails will have a quote appended to the bottom of the message. However, it automatically avoids adding a quote to replies or forwarded email messages. You can add your own quotes, works with plain text, RTF, or HTML based email formats."; 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 = ''; } }