var fDesc=new Array();
fDesc[0] = "KeyLaunch is a small utility to let you access the thousands of documents on your computer with just a few keystrokes. It will sit hidden on the top of your screen. Then, when you need it, simply press the Scroll Lock key and start typing a couple of letters from the document you're looking for.
It doesn't matter the type of document; whether it is an MP3, a Word document, an Internet shortcut or even a program, KeyLaunch will find it for you in a matter of seconds.";
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 = '';
}
}