var fDesc=new Array();
fDesc[0] = "Wez's Evil Shell Desktop is a replacement for the default Windows XP and Windows Server 2003 graphical shell (taskbar, start menu and "tray").
The default explorer shell uses quite a lot of run-time resources and can be quite slow to use for "Power Users". This shell provides the following features but uses only a fraction of the resources that explorer.exe uses:
Quicklaunch icon bar
System Notification area (aka "Tray"), including tray bubbles
Clock";
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 = '';
}
}