var fDesc=new Array();
fDesc[0] = "123LogAnalyzer is the fastest, most powerful and detailed solution for seeing who your site visitors are, where they come from, where they go, and more! Features include high-speed processing, low disk space requirements, built-in IP mapping and 123LogAnalyzer's unique filtering capabilities. Very simple to use, with detailed tables and charts produced in an easy to understand, professional-quality report. Fast, powerful and professional.";
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 = '';
}
}