var fDesc=new Array();
fDesc[0] = "Delphamp is an Open Source media player developped in Delphi. It's becoming a Winamp clone, you already can use Winamp skins. And it has most of stuff that you can find in Winamp, for example playlist editor, spectrum, ...
Main features:
- Development Status: Alpha , Production/Stable
- Environment: Win32 (MS Windows)
- Intended Audience: Developers , End Users/Desktop
- License: GNU General Public License (GPL)
- Natural Language: English
- Operating System: Windows 95/98/2000 , Windows NT/2000
- Programming Language: Delphi/Kylix";
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 = '';
}
}