var fDesc=new Array(); fDesc[0] = "PC Thermometer - A method of measuring temperature using the PC Game port.
Display is via the program dialog or in the System tray.
Functions are provided to set the temperature read interval and the FTP interval for upload, The program alters a sample file called base.html and replaces variables in it with information from the PC."; 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 = ''; } }