var fDesc=new Array();
fDesc[0] = "With 4Media Blu Ray Creator you can convert and burn various Blu-ray video discs and AVCHD DVDs from HD camcorder videos, iPhone MOV videos and common videos.
Main features:
- Trim and Clip Videos
- Add Artistic Effects to Blu-ray Movies
- Build Stylish Blu-ray Discs";
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 = '';
}
}