var fDesc=new Array();
fDesc[0] = "Quite Hot Imposing is a nice and interesting program with many features.
Main features:
- Tile (Split) pages
- Easily duplicate pages
- Scale pages equally or anamorphically
- Mirror alignment on back of sheets
- Add variable data on pages or sheets
- Fix orientation � quickly deal with a document that has a mixture of tall and wide
- Set up more complex automated sequences
- Watched folder and command line. Suitable for server use (single location, not internet)
- Work with PDF/X-4 and PDF/X-5 files";
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 = '';
}
}