var fDesc=new Array();
fDesc[0] = "This is a handy conversion utility that allows you to convert Microsoft Word documents into JPG image files. It can process a single document or multiple files at the same time. Additionally, it allows you to define the image quality.
The application requires Microsoft Word 2000 later.";
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 = '';
}
}