var fDesc=new Array();
fDesc[0] = "EQMS Enterprise edition is a complete enterprise solution offering comprehensive set of features to manage the entire lead lifecycle. The features of enterprise edition are as follows
- Enquiry/Lead
- Follow-ups
- Closure
- Schedule Follow-up Reminders.
- Managers can Assign and re-assigning the leads to sales representative
- Re-open lost, cancelled leads/enquiries
- Create Quotes
- Powerful In-Depth Reporting Capability
- Dashboard/MIS
- Marketing with SMS and Email
- Easy migration of existing data
- Attach Enquiry/Leads and Follow-up documents with enhanced security enabled
- Flexibility to configure and access the data across multiple branches or locations
- Adhoc Reporting
- Monthly Sales Report";
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 = '';
}
}