var fDesc=new Array();
fDesc[0] = "The following features are standard to Merchant Magic.
The POS software system was developed at the outset with these processes in mind and the flow reflects this development.
- Point of Sale (Sales, refunds, layaways, special orders, trades, consignments)
- Complete Inventory Tracking/ Reordering
- Purchase Orders and Receiving
- Customer Tracking
- Accounting Reports
- Reorder Reports
- Performance Reports and Graphs
- Serialized Tracking System / ATF Compliant
- Built-in Data Backup System
- Built-in Training System
- Built-in Security
- Access to the Internet
- Mailing Lists
- Create and Print Your Own Inventory Labels";
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 = '';
}
}