var fDesc=new Array();
fDesc[0] = "Z-Fi Mapper is a free-to-use tuning platform with full support for over 15 languages including non-Latin script.
Main features:
- Color-coded fuel map cells to indicate lean/rich fuel areas.
- Easily readable input and function.
- Operating point crosshairs and map-aligned throttle/RPM guages.
- Automatic update prompt.
- Default traction control maps with color-coded sensitivity map.";
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 = '';
}
}