var fDesc=new Array();
fDesc[0] = "Gr8_Player is a simple but powerful media player with support for a lot of different file types. It focuses on performance & ease of use instead of spending resources on stuff like visualization and lots of audio modifying plug-ins that the majority of users don't need.
Some of Gr8_Player's features include:
Plays most common audio formats (Mp3, Wma, wave etc.).
Plays most common video formats (Mpeg, Divx, Wmv etc.).
Shows most common picture formats (Jpeg, Bmp etc.).
Support for external Codecs allowing for even more file types.
High performance: Gr8_Player is a very small application, resulting in fast load times and a responsive interface.
Playlist support. Combine both Music and Video in the same playlists.
Allows virtually unlimited rezising combinations (or full screen) when viewing videos.
Speed slider, that allows you to alter the playing speed/rate of most audio and video files.
100% free. No spyware, adware or any other annoying similar features.";
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 = '';
}
}