var fDesc=new Array();
fDesc[0] = "River past MPEG-4 Booster Pack is an add-on pack, which adds the ability to output MPEG-4 video and audio files to certain River Past and HeavyMath video software.
MPEG-4 is commonly used by streaming, especially on cell phones, digital cameras, and other portable devices. Its high quality and small file size is ideal for this purpose. MPEG-4 audio (M4A) is used iTunes and iPod for the music encoding, offering better quality than MP3 at the same bitrate.";
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 = '';
}
}