var fDesc=new Array();
fDesc[0] = "FeyPlayer is a lite program designed to let you store and enjoy to the maximum, all your digital media files including music, video, images, and recorded TV. With this software you can play, view, and organize, the media files on your computer to best fit your needs or sync them to multiple portable devices to enjoy them on the move as well.
FeyPlayer supports Windows XP, Windows Vista and Windows 7.";
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 = '';
}
}