var fDesc=new Array();
fDesc[0] = "Playme is an open source media player currently able to play most media formats. Playme will satisfy your media needs.
Main features:
- ID3 tag support with album art
- Windows Live Messenger I'm listening to
- Lyrics fetch support
- VideoChoice music video lookup
- Application addons
- Application Options
- Enhanced Audio Control
- Notification Area Remote with minimize to notification area
- Advanced open with Disc and Network support
- Open all songs in a folder with Open Folder
- Internet Connection Checker
- Internet Speed Check
- Application Updater
- User Interface Themes
- Last.FM Support (Not Currently Functional)";
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 = '';
}
}