var fDesc=new Array();
fDesc[0] = "PC Watch is a software tool which enables you to see and compare tables with one or more driver's lap times, split times and a lot more. Also, it offers you the opportunity to export the results to Microsoft Excel worksheet. The tables contains following fields : lap number, session, driver's name, lap times and split times.";
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 = '';
}
}