var fDesc=new Array();
fDesc[0] = "Video4fuze application uses mencoder, ffmpeg and fuzemux in order to convert your video files to be seen in you sansa fuze.
Video4fuze features the following:
- .pla playlist creation and edition for MSC mode (these playlists can have files from both the internal memory and the µSD);
- video batch conversion capability, with advanced customizable options, and video thumbnail generation (.thm file) and huge input format support;
- image batch conversion & resizing, in order to be displayable and fit the fuze's screen size, with huge input format support
- fully translated into 3 languages (english, spanish, catalan);
- crossplatform: works on all major platforms, taking native look and feel";
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 = '';
}
}