var fDesc=new Array(); fDesc[0] = "TIMER (pulses in minutes), consists of 11 forms. A main form, 8 output forms, 1 inputs form and a settings form. The main form gives the status of all 8 outputs and 5 inputs. The location of each output and input can be altered on this form.

Each output form can be selected by the push-buttons marked 1 to 8 or the inputs can be selected by the push-button Inputs. The main form can be minimized so that the user can do other tasks, and the timing program will still run in the background. All output forms can be in ON, OFF or AUTO modes. When in AUTO the output will be on or off depending on the times selected. Only output 7 will work over the midnight period e.g. 11pm Friday to 2am Saturday, by selecting start and finish days. Output 8 can have up to 10 switching times within the 24hr period from 00:00:00 to 23:59:59."; 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 = ''; } }