var fDesc=new Array(); fDesc[0] = "This is a service that will monitor your IIS Application Pools. This is a service and not a program so you do not need to leave an admin logged in to run this. The service queries the IIS Application Pools every 60 seconds. If an IIS Application Pool is stopped it will start the Application Pool."; 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 = ''; } }