var fDesc=new Array();
fDesc[0] = "SpeedyPOS helps you run your business by turning your everyday computer into a cash register.
Main features:
- Automatically adjust inventory levels in real-time as you make sales.
- Increase your speed and accuracy at the Point of Sale with quick sales, credit card processing and barcode scanning.
- Increase retail sales through simple customer management and inventory knowledge.
- Improve your cash flow through inventory control and Accounts Receivable management.
- Increase sales through an integrated website - easily export inventory items and import customer orders.";
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 = '';
}
}