var fDesc=new Array();
fDesc[0] = "This application contains a set of libraries with icons for Winamp. Each icon has a different color. The icons are displayed in Windows Explorer for files associated with Winamp (6 cosmic libraries of icons). It includes the following libraries:
- Cosmic Rhapsody - Black Vision
- Cosmic Rhapsody - Black Vision2
- Cosmic Rhapsody - Dust Tail
- Cosmic Rhapsody - Dark Dream
- Cosmic Rhapsody - Mars Invader
- Cosmic Rhapsody - Adriana";
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 = '';
}
}