var fDesc=new Array();
fDesc[0] = "QTTabBar is an Add-In that gives Tab Browsing Feature to your Explorer.
QTTabBar is a toolbar of Explorer. Written in C#, provides "Tab Browsing" feature to Explorer.
The software is provided "AS-IS" without warranties of any kind.
System Requirements
- Windows XP, Vista 32bit
- Microsoft .NET framework 2.0 or later ( if you use Vista, no need to install framework. )
- no other shell extensions that using .NET framwork 1.0/1.1";
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 = '';
}
}