var fDesc=new Array(); fDesc[0] = "Cool Room Calc is a software designed for air-conditioned room cooling load calculations. The output of the program's work is a table of heat gains into air-conditioned room from separate sources, their ratios and also the total heat gain, as well as a table of heat loads grouped by source categories and their total including safety factor.
The program allows to enter information about the customer and the project, as well as to get on paper or in electronic form a printout with the calculation results."; 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 = ''; } }