var fDesc=new Array(); fDesc[0] = "Instantly notify a co-worker, friend, or others of an important meeting or event. Even send reminders to yourself. This program allows you to define several "canned" e-mail messages. Later, you can send any of those messages by just double-clicking a shortcut icon, or entering a simple command at the DOS command line. This Power Tool also allows you to add e-mail notification to any script or macro you've written."; 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 = ''; } }