var fDesc=new Array();
fDesc[0] = "GT-10B Librarian for Windows XP/Vista
GT-10B Librarian is an application that allows you to manage your GT-10B User patches efficiently as a library on your computer.
It is suited for collecting, organizing, copying, and reordering large amounts of data.";
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 = '';
}
}