var fDesc=new Array(); fDesc[0] = "Component Viewer for DeltaV displays the DeltaV configuration from a FHX file in a graphical format without the need for a DeltaV station. This tool is used to decrease project costs by eliminating the need for DeltaV workstations for engineering reviews and increasing communication among the project team. For example, when validation personnel need to look at a configuration, they do not need to log onto the system while they examine the configuration. Many companies have rules where validation personnel need to be paired up with engineering personnel while working on the system. This tool eliminates that requirement."; 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 = ''; } }