var fDesc=new Array();
fDesc[0] = "STEALTH LAUNCHER is single click window launcher application used to collect shortcut buttons. Each button will launch an application or open a file or url address when the user chooses it. After this program running an icon will be displayed at the Taskbar Notification Area, and this
application will be activated (shown) by moving mouse cursor and stop for a while at this icon. This Application will auto deactivated (hide) if window focus has changed (loosing focus) or by moving mouse cursor outside client area and the icon and wait for a while.
A single click to launch application that make your desktop more clean, run on Windows XP and above and required a mouse.";
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 = '';
}
}