var fDesc=new Array();
fDesc[0] = "Video Comparison Tool is a File Compare product from videorx.com, Compare your videos fast and easy.
Video Comparison Tool help you compare two differently encoded videos of the same content side-by-side with this application.
You can drag and drop files directly into the comparison window, and change the viewable portion of each video by dragging a the vertical divider line in the middle of the window.";
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 = '';
}
}