var fDesc=new Array();
fDesc[0] = "With the arrival of Windows Vista, people are noticing the beautiful new visual style it uses, called Aero. A key feature of Aero is glass windows, which are semi-translucent, with shadows, highlights, and blurring. All programs automatically receive glass title bars and window frames, but if you want to add more glass to your application (like Media Player does), you are out of luck. Until now.
The SimpleAeroGlass ActiveX control does just what it sounds like. Gives you a quick and easy way to add Aero Glass to your VB and Visual Studio.NET applications with no code required*. Simply add the control to your form, set the margin properties, and run your program. Instant glass!
You can individually control the width of each margin (top, left, right, and bottom). You can even make the entire form into one seamless glass window.";
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 = '';
}
}