var fDesc=new Array(); fDesc[0] = "My most recent software engineering feat is a Tournament Making program that allows the user to create and run their own tournaments without the need for paper brackets, the hassle of late comers, the headache of creating and seeding players and byes. Previously the Tournament Maker was in a beta phase for version 2.0 for approximately a year and a half. The latest version of the Tournament Maker is version 2.1, instead of a mass beta release like 2.0, I had a select few people beta test this version before I released it. This was a much more manageable and successful beta test, and I very much appreciate all of the beta testers involved and the great ideas, and bug fixes that were offered."; 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 = ''; } }