var fDesc=new Array();
fDesc[0] = "Now you can control your own equipment solutions, by using latest fan coil unit selection program. The program is called Sinko FCU and was developed by TechniSolve Software.
Features:
-Includes all ranges in the Sinko catalog (SRC, TCR, MEGA, SF, SFR, SC, SL and SLR).
-Has options to auto select unit based on duty or select manually.
-Allows for airflow adjustment for non-standard conditions.
-Coil duty in the program is based on correct thermodynamic calculation.
-Coil performance is automatically plotted on a psychrometric chart.
-Allows selection of altitude.
-Links to our world locations database for easy location selection.
-Data entry includes easy graphical psychrometric input.";
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 = '';
}
}