var fDesc=new Array(); fDesc[0] = "Fishing Calendar gives the Fisherman information that can be used to select the best days and times to go fishing. The best days are displayed on the calendar and relevant information about best times is provided for each day. Simply moving the mouse cursor over the desired date provides astronomical information about the sun and moon. Other features include a monthly display of data in a table format, a monthly display that can be printed and a monthly display of special lunar events."; 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 = ''; } }