var fDesc=new Array(); fDesc[0] = "The Autodesk® FBX® plug-in allows all types of data to be packaged into one file format that can be used by most of today's 3D authoring software. The FBX file format is proprietary, however, the format description is exposed in the FBX Extensions SDK which provides source code for the FBX readers and writers. Currently there are 2 FBX SDK bindings: one for C and Python supplied by Autodesk. Blender includes a Python export script for FBX, written without using the FBX SDK."; 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 = ''; } }