var fDesc=new Array();
fDesc[0] = "RaceStudio 3 allows you to connect to and download data from AiM dash loggers. This program lets you setup a wireless access point on your AiM device, by connecting it to your PC. You can configure a password to secure your device with WPA2-PSK encryption.
For multiple racers in a team mode, you may add AiM devices to an existing Wi-Fi network to which your PC is also connected; each device can have a unique password that is in addition to the network password.
RaceStudio 3 can also be used to analyze collected data, view live information, and update AiM device firmware.";
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 = '';
}
}