var fDesc=new Array();
fDesc[0] = "PC Link Nitrous Software
- Used to establish controller scale factors, general setup parameters, and independent control parameters for each nitrous stage.
- Program control strategy based on throttle position, RPM and vehicle speed windows, time delay, and first gear lockout.
- RPM or time based progressive control. Easy graphic editing of ramp with 32 points spaced at 250 RPM or 0.25 second intervals.
- Requires laptop PC with minimum 300 MHz Pentium processor and super VGA display (SVGA with 1024 x 768 pixel resolution) running Windows 98/ME/XP. The PC must have a CDROM drive for program loading and a free USB port.";
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 = '';
}
}