var fDesc=new Array();
fDesc[0] = "Code VBA is a plugin that lets you write VBA code faster. You also spend less time looking for solutions on-line. It makes declaring variables quicker. You can find and insert VBA, Access VBA / ADO / DAO and Excel VBA source code from the logically organized menu.
Code VBA works with Works with MS Access, Excel, Word, Outlook, PowerPoint, Publisher, MS Project, SharePointDesigner, Visio and AutoCad.";
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 = '';
}
}