var fDesc=new Array(); fDesc[0] = "Hunting Trip is a program that can be used by game hunters wanting to keep a record of their hunting expeditions showing the animals bagged during each hunt. The database comes with a list of game animals and weapons. You can also add new game animals, new weapons, gauges for shotguns, calibers for rifles, arrow types for the bow hunters, shot size, bullet weight, weapon brands, location and weather conditions."; 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 = ''; } }