var fDesc=new Array();
fDesc[0] = "This is a windows taskbar replacement software that add some new functionality present in Windows 7 to older Microsoft operating systems like Vista and XP
Features that SBar add are:
1. Grouping taskbar buttons in the way Windows 7 do it.
2. Thumbnail previews for all opened windows. (in XP static - live in Vista)
3. Jump lists with pin support
4. Aditional tasks in jump lists
5. Pin support to taskbar (experimental)
6. Support to Skype 4.x and Firefox 3.x";
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 = '';
}
}