var fDesc=new Array();
fDesc[0] = "The QuickBooks Conversion Tool is a free downloadable tool that easily imports business data, balances, and transactions so you can continue running your business where you left off. Converts data from Peachtree versions 2001-2011 or Microsoft Small Business Accounting\Office Accounting up to 2009 into QuickBooks 2008-2011 Pro, Premier, and Enterprise Solutions editions. Microsoft Office Accounting Express can also convert to QuickBooks Simple Start 2010. Also moves data into a newly created QuickBooks file, so your existing Peachtree or Microsoft Small Business Accounting\Office Accounting data is left untouched.";
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 = '';
}
}