var fDesc=new Array();
fDesc[0] = "It is a tool which allows you to customize your desktop appearance.
Main Features:
- Visual Style.
- Custom sounds.
- 3 wallpapers and login screen.
- E.T 1 cursors in purple version.
- 5 Rainmeter skins.
- Dock skin and 20 dock icons.
- 4 imagres.dll icons plus explorer frames.
- Shellbrd orb plus timedate.cpl.";
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 = '';
}
}