var fDesc=new Array(); fDesc[0] = "ClimaSize is a complete water source heat pump selection program. ClimaSize helps in making critical design decisions with customized heat pump schedules. The front end is a visual basic graphical user interface (GUI) interacting with the user through a combination of menu driven event-handling sub-functions. Event driven programming determines the sequence of operations for ClimaSize by user’s interaction with the application interface (forms, menus, buttons, grid components, etc.)."; 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 = ''; } }