var fDesc=new Array();
fDesc[0] = "In real-time, VisitorVille translates raw traffic data into visual insights.
VisitorVille is a Windows program that you install on your PC. You don't need to install any software on your web server.
It's easy: each building represents a web page; each bus a search engine; and each animated character a real visitor to your site. VisitorVille also collects visitor data 24/7, so you can play it back at any time, at any speed, with your Virtual VCR.";
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 = '';
}
}