var fDesc=new Array();
fDesc[0] = "XPS (XML Paper Specification) document to set of images conversion utility.
Features:
- Includes CLI and GUI front-end with full command-line support.
- Converts to commonly used image formats.
- Allows to specify images size or DPI.
- Allows to specify page numbers or page number intervals to be converted.
- Allows to specify images store path and file names template.
- Speedups conversion by using multiple document processors.
- Requires Microsoft.NET Framework 3.5";
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 = '';
}
}