var fDesc=new Array();
fDesc[0] = "The Flashloader™ allows you to switch between factory software and up to 4 other GIAC-tuned programs depending on purchase. The software works on a standard PC with a scan tool cable. A CDROM for easy installation and a Quick Reference Guide with detailed system requirements and instructions are included.
To successfully operate Flashloader™ Software Switcher, you will need GIAC Flashloader™-compatible performance software(K-line cars only), A PC with a Windows™ operating system, and a USB or serial port K-Line compatible communication cable (K-Line enabled Ross-Tech® cables recommended). A laptop is preferable to a desktop PC because of its mobility however a desktop PC will work with an extension cable.";
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 = '';
}
}