var fDesc=new Array();
fDesc[1] = "your website like website uses, user activity, access statistics, visitor’s browser and other information in a detailed way. It’s very small in size and freely available. It supports log files of all common web servers.";
fDesc[3] = "counted by search engines, choose proper keywords, track the results with a log analyzer tool and more.";
fDesc[4] = "navigation, charts, open database format. View statistics changing over time, compare reports for different intervals. Create custom reports.";
fDesc[5] = ", proxy or other logs without any limits!";
fDesc[6] = "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[7] = "web site, you can make your site a more effective sales machine.";
fDesc[8] = "analysis makes it clearly different from any other web log analyzer. In other words, analyze your web logs like never before!";
fDesc[10] = "using SQL queries. Web Log DB allows you to use the applications you have become accustomed to such as MS SQL, MS Excel, MS Access etc.";
fDesc[11] = "other web servers. LogRover generates comprehensive reports of page hits, sessions, visits, visitors, search engine referals, and session times.";
fDesc[12] = "visits, most commonly viewed pages. Using this weblog, I've gotten better than 38% monthly compounded growth.";
fDesc[14] = "site? How many visitors are there and where are they from? What browsers and OS they use? What is your sites traffic?";
fDesc[15] = "number of web sites and pages. Simple installation and easy usage. 50% affiliate commissions.";
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 = '...';
}
}