var fDesc=new Array();
fDesc[0] = "You can enjoy your favorite DVD on your PSP as a portable DVD Player.
Key Features :
- Direct convert DVD to PSP
- Support various PSP video format and video size
- Support rip chapter to PSP
- Support customize PSP profile configuration
- Automatically shutdown computer after long time conversion
- Easy-to-use interface and support skin
- Allows you to select target subtitle and audio track
- Output profile is adjustable, you can compress movies to any size and quality you need";
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 = '';
}
}