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[2] = "visitors: activity statistics, file access statistics, paths through site, referring pages, search engines, browsers, operating systems, 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] = "reports. This website statistics software supports 430+ search engines from 120 different countries.";
fDesc[7] = "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[8] = "usage, referrers, browsers, download, search terms and error messages. Built-in FTP browser and support for GZ compressed log files.";
fDesc[9] = "web site, you can make your site a more effective sales machine.";
fDesc[10] = "models, referrer sites, hits and hosts per day, visitor counter, most popular search engines and keywords. Easy to use, very fast.";
fDesc[11] = "features, Alterwind introduces unique features for professional SEO (Search Engine Optimization) and advertising campaign tracking.";
fDesc[12] = "customers by providing live web chat. PLUS - get detailed web analytics reports from the SQL database back end.";
fDesc[13] = "various languages output to screen, ftp, file directories or email.";
fDesc[14] = "statistics, activity of visitors, referring sites, search engines, errors, and much more.";
fDesc[15] = "of your site. Each link on your site is superimposed with a chart indicating the number of people clicking that link.";
fDesc[16] = "visitors to the web site. Frequently updated parser module recognizes hundreds of search engines.";
fDesc[17] = "your visitors activity \"under a magnifying glass.\" With over 90 reports, this tool will help you bring new visitors and improve site navigation.";
fDesc[18] = "generates many types of reports and histograms. There are many options and filters available to help you getting exact information about your site.";
fDesc[19] = "web site usage statistics, referring sites, traffic flow, search phrases and much more! Download FREE trial version today!";
fDesc[20] = "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.";
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 = '...';
}
}