var fDesc=new Array();
fDesc[0] = "This is a utility program I wrote to help convert RGB and HSL values to Winamp 3 gamma values and code. The output is used to create color themes for Winamp 3 skins. You can use the sliders to select a color, or the Windows standard color dialog, or an Eyedropper tool which lets you select a color from anywhere on screen. You can load up a PNG file and see the effects of your selected color and other settings in real time. A very handy tool for Winamp 3 skinners or for anyone who needs to convert RGB to HSL.";
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 = '';
}
}