var fDesc=new Array(); fDesc[0] = "The My Gun Collection (MGC) application was create to help manage your gun collection. The My Gun Collection application was carefully designed to allow you to quickly get details about a specific firearm all with the click of the mouse. With an easy to Use interface - the firearms in your collection are listed on the side of the application sorted by the Name alphabetically. You have the option to view all the firearms in stock, the ones you sold or by all. It has the ability to save data entry time by using an auto suggest feature for common information (Manufactures, Models, stores, caliber, 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 = ''; } }