var fDesc=new Array();
fDesc[0] = "Ribbon Finder for Office Enterprise 2007 will be your assistant in learning commands in Ribbon. Ribbon Finder is there for you to fast know and find the specified commands you need from thousands of commands in each Microsoft Office 2007.
With Ribbon Finder, you just need to search with your own words and click on the command you need.";
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 = '';
}
}