var fDesc=new Array();
fDesc[0] = "CustomBar is a tiny 18 pixel high bar that docks to one side of your screen (just like the taskbar ) and provides customizable access to functionality such as Winamp controls , web search functionality , system information , shortcuts , menus , system volume controls, and more!";
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 = '';
}
}