var fDesc=new Array();
fDesc[0] = "pinRibbon is a ASP.Net based ribbon bar component that let you create Office 2007/2010 compatible user interfaces for web based applications.
pinRibbon includes the following exciting features.
- Pure HTML based ribbon ASP.Net server control
- Compatible to Microsoft ribbon specifications
- Supports Internet Explorer 7+, Firefox 3+, Chrome, Safari
- Ribbon is created by Office compatible ribbon XML
- Ribbon XML can be easily created with Visual Studio ribbon designer
- Supports Office 2007 and 2010 style
- Supports dynamic menus
- Supports client side events
- Supports Office button
- Supports tool tips
- Supports localization
- Client side API for enable/disable and show/hide objects
- Server side API for enable/disable and show/hide objects";
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 = '';
}
}