var fDesc=new Array();
fDesc[0] = "Exam Formatter is a free tool that will help you import PDF to VCE.
Main features:
- Imports images from PDF automatically.
- Supports protected PDF files. Now you don't need to remove protection before importing.
- Automatic question number format selection.
- Supports customization of answer choice and correct answer signature.
- Better smart line break removing feature.";
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 = '';
}
}