var fDesc=new Array();
fDesc[0] = "ScanSoftPOS – Point of Sale simplifies inventory management and reporting and automates transaction processing. ScanSoftPOS makes it easy to track customer information and maintain detailed customer history.
Features:
-Get started fast with a solution that's easy to use
-Keep track of daily operations with built in Billing, Receiving module, Payment tracking
-Manage and track Inventory, Receiving, Employee time tracking.
-Manage inventory in real time to know what’s selling, what’s not and what to restock.
-Automate transaction processing
-Deliver professional, personalized service
-Export data to easily work with Microsoft Products
-Analyze data with flexible reporting options
-Grow your business by adding more terminals, stores and even an Online Store.";
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 = '';
}
}