var fDesc=new Array(); fDesc[0] = "Takaro CryImporter script for 3ds max 6 and above. Imports geometry and animation from Crytek CGF, CGA, CAF and CAL files into 3ds max 7 or above. The Morpher modifier is used for facial animation. This modifier requires a copy of the mesh to be
made for each facial animation, which is typically about 20 different animations for a character in FarCry. For clarity, these meshes are hidden during the import process."; 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 = ''; } }