var fDesc=new Array(); fDesc[0] = "This program displays a little box with a message you choose. It is shown near the taskbar clock for seven seconds in a small, Always On Top window. This will allow you to see messages without interrupting your current input focus.

Message Displayer is meant to be used in other programs to display status messages. You control what message is displayed by passing the message over the command line arguments to the program. To start a new line in the message use ~~."; 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 = ''; } }