var fDesc=new Array();
fDesc[0] = "With the PolderbitS DVD Creator you can create your own video DVD's, based on video material from various sources:
- Video from devices like digital camcorders or photo/video cameras, or capture cards to digitize analogue video on VHS tapes for example.
- Video files residing on disk, like downloaded video files, or video files created with other software for example.
- Tracks or chapters on existing video-DVD's which are not copy-protected.";
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 = '';
}
}