var fDesc=new Array();
fDesc[0] = "inFlow Inventory is professional inventory management software for retail, distribution, manufacturing, wholesale, and e-commerce businesses. With a central database, you can keep detailed listings of your products, vendors, customers, and transactions from multiple sources. Barcode support facilitates faster data entry and fewer mistakes.
It provides customizable reports to calculate detailed information like your total sales, total taxes, best-selling products, products on back order, and how long your inventory will last.
This program is available in Free, Regular, and Premium versions. Free version has a limit on the number of customers and reports. Regular version supports multiple user logins. Premium edition has additional reporting, order management, multi-level BOM support.";
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 = '';
}
}