var fDesc=new Array();
fDesc[0] = "The LiteJet System can be programmed from either the Touch Panel Programmer (TPP) or from a PC using the LiteJet Programming Software.
Programming the LiteJet through a PC is simple and can be picked up rather quickly with practice. To program a LiteJet with a PC, 4 things are vital to have prior to leaving for the job site.
These include:
1. A computer with a free serial port. If your computer does not have a serial port,then a USB to serial adapter can be used.
2. The latest version of the Programming Software
3. A straight through serial cable. The serial cable can be bought or made. If made, the only pins you will need are 2, 3, and 5.
4. Finally, you will need a LiteJet Master Control Panel (MCP).";
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 = '';
}
}