var fDesc=new Array();
fDesc[0] = "Report Magic makes usable statistics from your web site log file analysis.
-Illustrative line, bar and pie charts allow you to analyze trends and quickly interpret information.
-Descriptions on each report help you understand the data they represent.
-Easy-to-read tables put exact information at your fingertips.
-Powerful and customizable. You can configure colors and fonts so that it integrates with the theme of your web site.
-A dozen languages to choose from.
-Portable. It will run on any platform that Perl will run on. -There are also pre-compiled binary versions for Windows and Macintosh platforms.
-Easy to setup and automate for hosting companies with command-line control.";
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 = '';
}
}