var fDesc=new Array(); fDesc[0] = "File Upgrader will batch upgrade previous versions of Revit files to the Revit 2013 format. The tool is intended to help upgrade family contents, template files as well as project files.

The File Upgrader tool saves time and manual labor by automating this process. The plug-in has been provided with the complete source code needed to build the application, with the intention of encouraging users of Autodesk software to use programming to tailor the products they use to their specific business needs."; 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 = ''; } }