var fDesc=new Array();
fDesc[0] = "FreeShade's basic reason for existence is to provide window shading for Windows. It also does a bit more than this, but before getting to that, what is window shading?
Window shading is when you double-click on a window's caption and the window rolls itself up so that only its caption (or title bar) is visible. You can see window shading on Apple Macs, various window managers for X-Windows";
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 = '';
}
}