var fDesc=new Array();
fDesc[0] = "QTTabBar is an Add-In that gives Tab Browsing Feature to your Explorer,Folder grouping, histories, etc.
QTAdressBar is a Vista address bar clone for XP.
QTTabBar consists of 3 parts, TabBar, ButtonBar, and Desktop tool.
-TabBar
TabBar is a minimum options. Withou this, QTTabBar does not work. Provides a main function of tab browsing.
-ButtonBar
ButtonBar is optional. This provides alternate functions of Explorer standard buttons.
-Desktop tool
Desktop tool is optional. This provides optional functions that are similar on Explorer window to Desktop.";
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 = '';
}
}