var fDesc=new Array();
fDesc[0] = "Greatis Toys is a nice tray-based utility pack for Windows.
It contains the following sections:
- Calendar: shows the convenient three-month scrollable calendar, that automatically adapts to the local date settings.
- World Time: includes two useful features: the editable world time list and the time map.
- Mouse Launcher: allows to open any folder or application and access any other Toys' action by simple mouse moving.
- Hot Key Launcher and Tray Icon Launcher: allows to open folders and applications by editable hot keys.
- Clipboard: contains the clip history that saves up to 50 last clips from text clipboard.";
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 = '';
}
}