var fDesc=new Array(); fDesc[0] = "DriveWizard HVAC is a program designed to make commissioning and troubleshooting of Yaskawa drives as simple as possible. DriveWizard HVAC provides user-friendly tools for viewing, manipulating, and exchanging data with the drive. Data can be retrieved, changed, stored, and graphed. The program is compatible with the Z1000, Z1000U, E7, V1000 and V1000-4X."; 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 = ''; } }