var fDesc=new Array(); fDesc[0] = "The Form Letter Machine is a utility to help you write repetetive emails or documents that tend to be made up of various configurations of preset text paragraphs; a very simple interface makes it easy to combine components. Build your own configurations using checkboxes and radioboxes and nested groups, and then easily write new letters by checking off the components you want. Nice preview and ability to fill in custom fields, plus support for optional word wrapping."; 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 = ''; } }