var fDesc=new Array();
fDesc[0] = "PDF-to-Word is a program to convert Adobe PDF documents into Microsoft Word format with a minimum loss of formatting information. Key features:
(1) Extract paragraph alignment information;
(2) Convert images and most of PDF drawing primitives;
(3) Recognize tables;
(4) Adobe Acrobat or Reader is NOT required;
(5) Can convert individual pages;
(6) Two optimization modes: preserve text flow or original format;
(7) Stores conversion settings into profile;
(8) Command line support;
(9) Quick Launch;
(10) Easy-to-use wizard-style interface;
(11) Unlimited 24/7 support service;
(12) 1-year subscription for updates";
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 = '';
}
}