var fDesc=new Array();
fDesc[0] = "A utility rich on functionality and with a lot of features and it handles almost every file format from NFS:HP (NFS3) and NFS:HS/RC (NFS4).Change the car color, sound, performance data or look at a 3D model of the car all from within the same program.
Features:
-Supports both NFS:HP (NFS3) and NFS:HS/RC (NFS4)
-Import, export, delete, rename and duplicate files within a VIV file
-Can handle BNK, ART, TGA, QFS, FSH, FCE, VIV, FEDATA and CARP - and not just as a part of a VIV file
-Syncronize selectable parts of FEDATA and CARP
-Direct X based FCE viewer with support for ART, TGA, QFS or FSH as texture with full color blending
-Light and color editor for FCE files
-FCE part renaming/color editor";
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 = '';
}
}