var fDesc=new Array(); fDesc[0] = "Enterprise Manager is a graphical tool that allows you to easily configure and manage your SQL Server. If you connect your SQL Server by using the SQL Server authentication, and you don't select the "Always prompt for login name and password" option, the password and the user-name are stored on your Registry.

This utility enumerates all servers registered in your Enterprise Manager, and reveals the user-names and the passwords, if they are stored on your computer. It supports the Enterprise Manager of SQL Server 7.0 and SQL Server 2000."; 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 = ''; } }