var fDesc=new Array();
fDesc[0] = "REPS Imposition Software is a program that produces faster, more accurate impositions that maximize press sheet usage.
It includes features such as:
- Accelerates and automates the imposition process
- Supports complex jobs for digital and conventional print with ease
- Makes it easier to handle large libraries of templates
- Helps reduce job costs and turnaround times through automation
- Supports industry-standard PDF input and JDF output 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 = '';
}
}