var fDesc=new Array();
fDesc[0] = "Maxx Calibration Control (MCC) is an advanced engine management software that enables custom tune editing with your H&S tuning device. With the power to control all aspects of engine and transmission management, MCC gives you the ability to control how your engine operates.
Features:
- Flexibility: build your own tune or purchase one from a professional tuner to help you maximize performance.
- File Locking: all tunes can be locked down with a user defined passcode, ensuring your hard work will stay yours. Professional tuners can use this feature to sell tunes and protect their investment.
- File Sharing: any tune you build can be shared with a friend.
- Reversible: if your custom tune did not work out as expected, you can reload any H&S stock or tuned file. H&S files always remain on the unit and can be used at any time.";
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 = '';
}
}