var fDesc=new Array(); fDesc[0] = "FishersLog™ is a professionally engineered fishing log program designed to make it very easy to maintain a detailed fishing log. Logging a trip is simple and straightforward. As you make entries, the program keeps track of your fishing locations, techniques, and species of fish caught so that these can be selected by dropdown menus in subsequent entries. Day of week, sunrise, sunset, moonrise, moonset, and moon phase are calculated automatically. Pictures can be associated with each trip. Log reports can be printed, saved to a file, or exported to HTML and viewed in a web browser."; 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 = ''; } }