var fDesc=new Array(); fDesc[0] = "The Workbench is a program that will help you manage your Microsoft® Access® databases. The Workbench will work out if a database is in Access 2007 or Access 2000/XP/2003 or 97 format and open the appropriate version of Microsoft Access.

It will allow you to see the users/computers using your database, lock out new users so that you can do maintenance and has some very easy check boxes so that you can compact, compile, decompile and backup your database as databases or in zip format.

You can easily switch between and organize your Access databases by storing them as favorites, make desktop shortcuts and rapidly switch between workgroup accounts. You can view and change the Startup Properties of your database in a few seconds as well as make an mde database without opening the database."; 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 = ''; } }