var fDesc=new Array();
fDesc[0] = "CPU-3 User Programming Tool - Intelligent Controls for Reverse Osmosis Systems
Programming the CPU-3:
Connect the computer to the CPU-3.
- Confirm that the computer is communicating with the CPU-3 by noting that the display on the Programming interface matches the display on the CPU. If it doesn’t, check that the Power is On to the CPU-3, the Programming Interface Cable is connected correctly and the correct Comm Port is selected.
- Select the data file you want to use for programming.
- Select Program->Send Data To ROC . .
- Select Start and the data transfer will begin.
When the transfer is complete, turn the power to the CPU-3, OFF and then back ON.";
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 = '';
}
}