var fDesc=new Array();
fDesc[0] = "LogManPc is a software used in reefer containers for manual or automatic download/retrieval of datalogger information.
Features:
-Fast and simple download/retrieval of refrigerated container data for verification and documentation of the correct handling of the cargo
-One single software tool for all major brands of container refrigeration units
-Able to withstand the challenging environment of container terminals and shipboard transport, regardless of conditions";
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 = '';
}
}