var fDesc=new Array(); fDesc[0] = "Game Bag is used by big game hunters and small 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. However the user can add new game animals, new weapons, gauges for shotguns, calibers for rifles, arrow types for the bow hunters, shot size, bullet weight, weapon brands, weight of the animal bagged, rack size when applicable, location, weather conditions, etc."; 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 = ''; } }