var fDesc=new Array(); fDesc[0] = "The basic idea behind Coin Collector software is to have a customizable database of all the information on your coins in a single place where you can browse, print out, and edit all sorts of information on your collection. To keep the program's GUI simple, most all the information can be viewed and edited per the main screen. A list of coins is on the left side and can be browsed using arrow or up/down keys. As you browse through the collection, when a coin is highlighted the information for that coin is displayed in the fields to the left of the screen. Also, a picture of the coin can be displayed below the list. The list can also be sorted by the coin description name or Issue Date. You can have all the coins in the list or view smaller lists of categories by using the tabs above the list."; 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 = ''; } }