var fDesc=new Array(); fDesc[0] = "RedNet Control is a program for controlling and configuring RedNet interfaces across the network. It features a graphical representation of each RedNet device on the local network, giving critical feedback, such as signal metering, clock status, power supply state, and primary/secondary network connection state. RedNet Control is completely customizable, which allows for several users, on the same network, to have completely different views."; 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 = ''; } }