var fDesc=new Array();
fDesc[0] = "This is a full-season mod by CTDP. This addon for F1Challenge updates the game to the F1 season 2004. It includes all track-specifications, a track pack and many more.
Features:
- 2004 high detail models and high resolution textures
- All special liveries and specifications through the season
- 2004 helmets and drivers
- 2004 performance and names
- new physics and tyre physics
- attempted 2004 rules
- 2004 tyres and 3D-rims
- 2004 pitcrews and pitgarages
- 2004 steering wheels optional with LCD
- Statistics
- 2003 Trackpack including the new Magny Course
- new track and onboard cameras
- completely new menu
- new game launcher for configuration";
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 = '';
}
}