var fDesc=new Array(); fDesc[0] = "This Web page class will retrieve the Windows user who authenticated to IIS and return the list of applications to which they are allowed access. It will display this list in a DataGrid and allow the user to click on a specific application. Once the user clicks on an application this page will generate a new token, store the token and user id into the esAppToken table, and then call the application passing the token to the AppLogin.aspx page in that Web application."; 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 = ''; } }