var fDesc=new Array();
fDesc[0] = "Finally the solution to convert your transaction files into a readable format ready to archive or print. Convert QIF to PDF and open in any PDF viewer. Review transactions in a readable view before converting. Your file will be fully parsed in the trial mode, so you can verify that QIF2PDF understands your transactions file correctly.
Select a file with transactions, review transactions and click Convert to create a PDF file. Import created file to any PDF viewer.";
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 = '';
}
}