var fDesc=new Array();
fDesc[0] = "Vending Essentials will help you streamline your vending operations. This affordable, quick-to-implement and easy-to-use vending software will take your business to the next level.
Main Features:
- Accounting
- Inventory Control
- Graphical Analysis Tool
- Machine/Location Detail
- Contact Manager
- Service
- Product Ranking/Use/Sales
- Sales Tax/Commissions
- Route Schedule/Reports
- Profit/Loss Margins
- Complete Histories
- Backup/Export Data
- Ease of Navigation";
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 = '';
}
}