var fDesc=new Array();
fDesc[0] = "A multi-functional software which gives you access to popular sites, many shortcuts and is equiped with a skinnable interface.
Features:
- Save up to 12 program/web shortcuts
- Quick access to popular E-Mail sites
- Search Google, Ask.com, Windows Live, Yahoo, Youtube and Wikipedia
- Shortcuts to IM clients, browsers and media players
- CD Player
- Skinnable interface and 16 colours
- 16 Different Net-Navi
- Access to useful System tools
- Control Panel
- Microsoft Office launcher";
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 = '';
}
}