var fDesc=new Array();
fDesc[1] = "business (Small Medium or Large).";
fDesc[3] = "for contact management, customer service, time tracking, and electronic communication. Free for personal use.";
fDesc[4] = "activities you need. Based on client-server architecture, that assures speed, power and reliability.";
fDesc[5] = "service. Besides, it provides functionality for time, project and documents management and can be integrated with financial software.";
fDesc[6] = "your customer base.";
fDesc[7] = "virtually unlimited number of people, equipment/resources, groups, or any combination.";
fDesc[8] = ", Email Client, Calendar, Address Book, My work day, News Feeds, Meeting Planner, Company Library, Form Designer, Journal.";
fDesc[9] = "calenda,opportunities ,quotations,invoicing with receivables and a project/helpdesk module with time and billing. Works with most currencies";
fDesc[10] = "contain all the financial and Sales operation results and helps you to manage successfully your Business.";
fDesc[11] = "SMS abilities, Email Client, Calendar etc";
fDesc[13] = "work orders, products, and services from one single easy-to-use interface. Put more focus on your business than on the backend processes.";
fDesc[14] = "your marketing, customers, sales and orders. Features include SMS abilities, Email Client, Calendar, Address Book, My work day, Invoicing";
fDesc[15] = "relationships and increase your sales quickly.Increase your Sales Income & Customer Satisfaction with Zoom Sales.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}