var fDesc=new Array();
fDesc[0] = "Real time temperature tracking in your cold rooms, laboratories, IT rooms...
Functions
- Real time temperature and humidity monitoring
- Archives on local PC
- Alarms by Email and/or Pop-Up
- Display and print graphs, lists...
Thermoscan IP Software
- Sensor Net Connect and probes settings
- Alarms threshold with temporisation
- Alarms by Pop-up, Email
- Graphs
- Alarms list
- Values are kept on PC for years
- Export to Excel, PDF, email PDF";
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 = '';
}
}