var fDesc=new Array();
fDesc[0] = "Tool Box is a User Friendly Special Function Utility for MicroScan.
MicroScan Tool Box - Function Block Summary:
- Humidity
- Dew Point
- Moisture Content
- Batch Average
- Batch Min
- Batch Max
- Batch Save to D-Base
- Math - Average
- Math - Formula
- Math - Rate of Change
- Math - Sum
- Math - Trigonometry
- Math - Tank Volume
- Math - Total
- Step Control - Step
- Step Control - Master
- Time - Time Clock
- Time - Multi Timer
- Time - PC Clock
- Time - Pulse
- Time Timer";
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 = '';
}
}