var fDesc=new Array();
fDesc[0] = "It's sure this Free Wizard is going to save you hours in converting & managing your video and image files. The size reduction will depend on the content, but could be as much as 90% of their original size, which makes the resulting file(s) much easier to upload to the web, email or transfer to a mobile device. There's no need to worry - the original files remain untouched on your PC.";
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 = '';
}
}