var fDesc=new Array();
fDesc[0] = "The software gives you the best of both worlds: familiar classic menu of Microsoft® Excel® 2003 and new Ribbon of Excel 2010.
Features:
- Easily deploy classic menu and toolbars in Classic Menu Manager;
- Easily show or hide Classic Menu and toolbars in Excel 20-0;
- The classic menu can stay at far right of Ribbon, or between "File" and "Home" tabs in Ribbon;
- The Excel 2003 interface can be positioned along with the Ribbon of Excel 20-0 or you can completely overlay the latter.
- Easily show or hide "Menus" tab in the Ribbon;";
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 = '';
}
}