var fDesc=new Array();
fDesc[0] = "Foresee™ is a calculation and selection program for Danfoss products. It calculates the capacity of a given compressor and searches for compressors that match a required cooling capacity.
The program can switch rapidly from model selection to capacity selection. Results are listed in a tabular form which can be sorted by capacity and by model name. It has direct access to PDF datasheets with all technical product data details.";
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 = '';
}
}