var fDesc=new Array();
fDesc[0] = "SwiftPOS Touch Screen provides customers with a solution to manage their sales through a POS with touch screen.
Main Features:
- SQL for customised queries on SwiftPOS Database
- Sales Dashboards.
- Full parent child stock control
- Directly link to HLW or ALM
- Order Online
- Electronic invoicing
- Download Promotions
- Download Price book
- MYOB Interface
- Multiple users, sites and locations";
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 = '';
}
}