var fDesc=new Array();
fDesc[0] = "Velvet Waves Visual Style is a smooth visual style in a choice of two colours (Marine Blue or Moss Green).
Main Features:
- Fully customised 'All Programs' Start Panel item.
- Specific background for use by the Alt-Tab Task Switcher Powertoy.
- Rounded scrollbars (without any display problems at small sizes).
- Rounded progress bars (let me know if this causes problems in any applications).
- Support for both horizontal and vertical taskbars at any height or width";
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 = '';
}
}