var fDesc=new Array();
fDesc[0] = "Extra GUI ActiveX is an extra collection of GUI controls for Basic GUI ActiveX.
This ActiveX control contains advanced and ready to use Grid, List Bar, Combo-Box with images, and more… Extra GUI ActiveX supports many styles of interface (based on the local system!), such as: Windows 98/ME/2000/XP/Office 2003 and the new OS of Microsoft – Windows 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 = '';
}
}