var fDesc=new Array();
fDesc[0] = "RioDVD is a full featured and easy to use DVD player integrating all functions of a standard DVD player. It can play DVD, VCD, SVCD Movies, with many most advanced features, such as
Keep Aspect Ratio, Pan&Scan .
Digital Zoom.
Bookmarks for DVD/VCD/SVCD.
Play DVD Content from a Hard Drive or NAS.
Hardware decode acceleration.
Video Desktop.
Hi-Fi audio.
Dolby Pro Logic II.
S/PDIF.
MPEG-2 audio and LPCM.
Audio Multi channels.
DVD-Video, DVD-ROM, DVD-RAM, DVD-RW, DVD+RW, VCD1.1, VCD2.0, SVCD";
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 = '';
}
}