var fDesc=new Array();
fDesc[0] = "KCS Retail™ is an application that offers retailers a complete retail management system that can be adapted to meet unique retail business requirements to improve in-stock positions, increase profit and better customer service while reducing labor costs, and decrease operation costs.
Main Features:
- Seamless real time integration with head office for chain operation.
- Location-wise raw material, item pricing, stock movements.
- SMS Gateway interfacing.
- Integrated email support.
- Event based SMS or email notification.
- Widget based configurable dashboard.
- Role based security system.
- Configurable UI and inputs using custom fields.
- Ad-Hoc and user configurable reports and analysis.
- CRM, loyalty management.
-";
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 = '';
}
}