var fDesc=new Array();
fDesc[0] = "FlightCheck Professional provides preflight of native & PDF files in one complete package. This award-winning, stand-alone solution has saved the printing industry millions of dollars in reprocessing costs. FlightCheck Professional scans a wide variety of layout application file types, including QuarkXPress, InDesign, FreeHand, Word, PDF, and many others as well as image and font files. The simple drag-and-drop interface warns you of hundreds of potential errors.
- Provides thorough and automatic document analysis
- Scans, Verifies and Collect the whole job in three easy steps
- Guides you to the specific location of the problem
- Ground Controls can be customized and shared cross platform
- All file elements can be collected from your local server and attached servers
- Keeps your presses running full speed
- Optimizes your productivity and billable hours";
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 = '';
}
}