var fDesc=new Array();
fDesc[0] = "Color Themes are a set of special text files that determine the look of Winamp skins. Each element is displayed in the appropriate color. This text files are written as XML documents. Installer contains:
- Color Themes for Winamp Bento / Big Bento Skins.
- Color Themes for Winamp Modern Skin.
- Winamp 5 Color Editor.";
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 = '';
}
}