var fDesc=new Array();
fDesc[0] = "WebLog Expert is an access log analyzer for your websites. It allows you to analyze your log files quickly and get information about your site's visitors: activity statistics, what files visitors accessed, information about referring pages, search engines, browsers, operating systems, and more. The Lite version has limited features and can only read IIS/Apache/Nginx logs and create HTML reports.";
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 = '';
}
}