var fDesc=new Array();
fDesc[0] = "POWERJET PLUS is a sequential injection system suitable for LPG and CNG conversion equipment.
POWERJET PLUS is the most advanced and technological up-dated gas phased system today available on the market.
Using the software you can adjust for example:
- Engine 4-6-8 ECU strategies
- Map
- Automatic calibration
- Change-over petrol gas
- Software adjustment for lpg and cng
- Visual of lambda probe
- Rail temperature sensor
- Safety Car
- Error checking";
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 = '';
}
}