var fDesc=new Array(); fDesc[0] = "This program is for motorcycle racers although much of could be use for other types of racing. It allows you to keep detailed records of each race to be used for decisions on what to do for setups on other races especially if you come back to a specific track. This one actually has a help file so I will not go into all the features here and how to use them. The current version is a .NET 2 and requires 2.x and above framework be installed to use. This application is for XP, Vista and Windows 7."; 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 = ''; } }