var fDesc=new Array();
fDesc[0] = "The Wonderful Icon is a small Windows utility that resides in your PC's taskbar tray.
Main features:
-Assign hotkeys for common tasks such as minimize windows, restart Windows, etc.
-Minimize programs onto the taskbar tray instead of just onto the taskbar, either by a keystroke or by right-clicking a window's Minimize button with your mouse
-Configure a menu of easily-accessible commands
-Increase or decrease speaker volume with the press of a button
-Automatically run programs at start-up, and hide them, minimize them to the taskbar tray, etc.
-Lots more!
-Oh yeah, and it's free!";
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 = '';
}
}