var fDesc=new Array();
fDesc[0] = "Enfocus StatusCheck is a plug-in for both Adobe Reader and the full version of Adobe Acrobat. This powerful tool allows anyone to check the Certified PDF status of a file.
StatusCheck comes pre-installed with PDF Standard Profiles used worldwide, such as PDF/X-1a, PDF/X Plus and PDF/X-3, and the national PDF specifications such as the PDF Profiles from the members of the Ghent PDF Workgroup.";
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 = '';
}
}