var fDesc=new Array();
fDesc[0] = "With Minotaur, now you can tune like the professionals!
Support for most Ford vehicles including the 7.3L and 6.0L Diesels, F-Series Gas Trucks, Mustangs, and many others.
The latest version of Minotaur includes several bug fixes as well as a number of new features including:
- Modifiable Map Scaling
- Adjustable X/Y Axis Zero Coordinates
- Scaled or Fixed Map Axes
- Full Support for 32-bit Float Memory
- Up to 8 Viewable Binaries (1 Working and 7 Overlays)
- Improved Map Blending from Overlays";
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 = '';
}
}