var fDesc=new Array();
fDesc[0] = "No. 1 Blu-ray and HD Movie Experience on PCs
- CPU/GPU acceleration for smooth playback and TrueTheater HD upscaling for a superior viewing experience
- Lossless HD audio and surround sound with DTS HD and Dolby TrueHD support
- Convert DVDs and videos into lifelike 3D experience
- Play broad range of video formats: MKV, FLV, 3GP, and more
- Immerse yourself in amazing depth and realism with Blu-ray 3D playback";
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 = '';
}
}