var fDesc=new Array(); fDesc[0] = "This is the .NET code used by the Revit 2012 family of products that support IFC export. The open source version can override the version that comes standard with shipped Revit.The base version of the code here is based on R2012 UR1. The latest code is based on R2012 UR2. Feel free to ask any questions in the Discussion area, or download and play with the code yourself."; 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 = ''; } }