var fDesc=new Array(); fDesc[0] = "RCT Track Decoder Utility, a program to help you build tracks that the game won't build from a saved design (and yes, it supports RCT2 track files as well as original RCT). The program will load any track file (except for hedge mazes) and list the segments that compose the track. You can either run it side-by-side with RCT in a window or export the list to a text file so you can print it out (e.g., with Notepad, Wordpad, etc.) to use as a guide to build your track. Note that since RCT2 will only run full-screen, printing out the list is really the only practical way to use it."; 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 = ''; } }