var fDesc=new Array();
fDesc[0] = "ThumbsPlus Texture plug-in gives you a plug-in for ThumbsPlus software.
The VTF and DDS texture plug-in has been updated to eliminate a problem where uninstall did not work, and a crash that could occur during ThumbsPlus startup if certain versions of Direct3D were installed.
ThumbsPlus version 7 SP2 build 2251 is required for proper alpha channel importing. Version 1.2 fixes uninstall problems and a startup crash with some versions of Direct3D. There is full download for Windows 2000, XP, 2003 and Vista.";
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 = '';
}
}