var fDesc=new Array(); fDesc[0] = "This is a simple utility to read the race results files into a nice easy to read grid form that can be colored and saved as a bmp, jif, or jpg file. It is probably more useful to a race admin or the like but many people like to look at their past race history also. It does the typical NASCAR or INDY style scoring or a custom scoring option is available for creating your own scoring system."; 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 = ''; } }