var fDesc=new Array();
fDesc[1] = "software, HTML, programming, or hosting company required.";
fDesc[2] = "sales through website. Contact Center provides website visitors with free contact channel with the website owner, customer support or sales agents";
fDesc[3] = "product online and give superior customer support service. With just the click of the mouse, your web site visitors contact";
fDesc[4] = "traffic. SmarterStats provides support for multiple log file types like IIS, Apache etc. on Windows and Linux operating systems. It is a feature-rich tool that provides you with features like data mining, spider/bot detention, geographical analysis, charts and graphs.";
fDesc[5] = "supports ASP and ASP.NET.";
fDesc[7] = "otherwise arduous process of submission much easier and less time-consuming.";
fDesc[8] = "site's traffic to life, casting your visitors as animated characters in a virtual city. Dozens of reports. Integrated Live Help. Click analysis + more.";
fDesc[9] = "software offered to webmasters. It enables website operators to talk to their web site visitors Live via real time text chat.";
fDesc[10] = "initiate a communication channel with the visitor to your web site.";
fDesc[11] = "details. It is a web-based chat, thus you can access to operator console anywhere.";
fDesc[13] = "customer support by providing a live person to chat with visitors while interest is high.";
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 = '...';
}
}