var fDesc=new Array();
fDesc[0] = "SkinAmp is a program, which allows you to generate automatically a skin for Nullsoft Winamp. The source is a bitmap-file like bmp or jpeg. The program generates a skin of this bitmap and saves it as a directory with bitmaps or as a winamp-skin-zip archive.
The program skins nearly all; main, equalizer, playlist, mb, avs, and the config files (viscolor, regions, playlist, readme, ...). And it supports a few bitmap manipulations by the program like resizing the source bitmap.";
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 = '';
}
}