var fDesc=new Array();
fDesc[0] = "The Desktop Writer is a simple program that will write text directly on the Desktop. You can choose text color, background color, font face and size.
Desktop Writer could be used to leave a note on your computer screen. It might also be fun for children - a way to practice spelling, learn about fonts and play with colors.
There is also a VBScript included that can be used to leave a message next time the computer is started.";
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 = '';
}
}