var fDesc=new Array();
fDesc[0] = "Free MKV player is a small utility released by mkvcodec.com, free for any personal use. This program is simple, compact and easy to use, is specifically designed to play MKV format files, built-in MKV video decoder, supports all the basic operation of video playback. This software is completely free, no ad-ware, totally clean.
Freeware;
Samll and portable;
Built-in MKV video decoder;
Easy to use;";
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 = '';
}
}