var fDesc=new Array(); fDesc[0] = "Keynote Reporter is a Revit add-on that will generate a report of all keynotes in your Autodesk Revit model. The report includes information about user, material, and element keynotes and which keynotes are orphaned. The result is a CSV file created in your %TEMP% folder and opened in your default application for viewing CSV files."; 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 = ''; } }