var fDesc=new Array();
fDesc[0] = "Interface:
- Displays movie titles, chapters and playback time
- Different skins for user interface available
Usability:
- Supports DVD, VCD and SVCD
- Easy volume control and chapter scanning
- Screen Capture
- Hot-keys:
Play (Enter), Pause (Space), Rewind (R), Fast Forward (F), Closed Caption (C), and 18 more.
Family-Friendly:
- Parental Control
(requires password to run the program)
Features:
- Supports Multimedia Keyboard
- Supports SPDIF (Sony/Philips Digital Interface)
- Dolby® Digital Audio (AC-3 and Dolby® Pro Logic® II)
- Closed Caption";
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 = '';
}
}