var fDesc=new Array();
fDesc[0] = "Visualization plugin for WinAmp. Laser effect
It is possible to look at it as look at fire.
A dance it not a set of poses. A music it not a set of sounds. Moreover, color music it not conformity to each sound of the certain color. I think it is conformity of change of image to music.
SoundGraffiti is an attempt to bring the visualization closer to the human perception of music.";
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 = '';
}
}