var fDesc=new Array(); fDesc[0] = "Inactive Shut Down Control is a form for Microsoft® Access® that gives you the ability to automatically shut down your Access application after a specified period of user inactivity. With Inactive Shut Down Control you can:
- Automatically close Access applications when the user forgets to
- Warn the user before the application is automatically closed
- Set the period of inactivity that triggers an automatic shut down
- Set the length of time that the shut down warning appears on the screen"; 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 = ''; } }