var fDesc=new Array();
fDesc[0] = "GPL Race Engineer (GRE) provides considerably enhanced functionality over the setup management mechanism built into GPL and over other currently available GPL setup development tools.
Main features:
- Context-sensitive Help; mouse right-click leads directly to an explanation of each item and suggestions for appropriate values
- Improved File Management including:
- Copy of Gearbox or Chassis settings from one setup to another
- Drop-down box selection of Player, Track, Class, and Chassis
- Automatic association of Player, Track, Class, and Chassis with path
- Import/Export of setups from/to Excel-compatible .csv text files
- Drag and Drop setup files onto GRE to open them
- Power and torque band graph to assist in gearbox ratio selection";
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 = '';
}
}