var fDesc=new Array();
fDesc[0] = "Traqview is the Free Windows based software program that allows you to analyze your data and easily see your progress as a driver.
With few quick clicks you can see a detailed GPS track map, braking points, speeds and detailed graphs. Designed from the ground up to be intuitive and simple to use. Racers choose Traqmate for a reason.";
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 = '';
}
}