var fDesc=new Array();
fDesc[0] = "Built especially for growing and larger businesses, Andale Lister Pro includes all the functionality of Andale Lister and more! Working offline, the simple spreadsheet-based interface allows you to:
- Focus on Volume - Upload inventory from your existing database, launch listings to multiple marketplaces at once and manage your pending orders in bulk
- Complete Business Management - Track your sales, print invoices, and ship your items from the desktop using integrated solutions.
- Report on Your Sales and Customers - See how much you sold and how many customers you acquired";
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 = '';
}
}