var fDesc=new Array();
fDesc[0] = "MvixFTS converts and transmits in real time movies encoded with Codec’s that are not supported on the MvixPVR. MvixFTS enables you to transcode movies coded with H.264/MOV/RMVB/RM up to 720i/p to the MvixPVR.
Note: In most cases a Dual Core or Hyper-threading processor with sufficient ram (in your PC) is required to transcode MKV files at 720i/p with a high Data Rate.";
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 = '';
}
}