var fDesc=new Array();
fDesc[0] = "This add-on brings back classical menus to Access 2010.
Features:
-Fully compatible with Microsoft® Windows® 8 (32/64), Windows 7 (32/64), Vista (32/64), XP, Windows Server 2003, 2008 and 2012 (32/64), Windows Terminal Server and Citrix System;
-Easily manage classic menu and toolbars in Classic Menu Manager;
-Easily show or hide Classic Menu and toolbars in Access 2010/2013;
-The classic menu can stay at far right of Ribbon, or between "File" and "Home" tabs in Ribbon;
-The Microsoft Access 2003 interface can be positioned along with the Ribbon of Access 2010/2013 or you can completely overlay the latter.
-easily show or hide "Menus" tab in the Ribbon;
-Original shortcuts are available. Press Alt, Q, Y1, and you can use the familiar keyboard shortcuts again.
-Quickly find and execute the command that you want.
-The setup package is only 6.5 - 6.8 MB, fast install and uninstall;";
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 = '';
}
}