var fDesc=new Array();
fDesc[0] = "Connects your QuickBooks accounting and your ecommerce store and is included with Actinic Business, Actinic Business Multi-Site and Multi-User.
Features:
-Maintain inventory in QuickBooks and share item information with the web
-Orders received on your web site are processed in QuickBooks
-Print packing tickets and shipping labels
-Control your website catalog and content with NO HTML experience.
-Exchange customer data between QuickBooks and your website
-Offer special pricing for QuickBooks customer accounts";
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 = '';
}
}