var fDesc=new Array();
fDesc[1] = ", the club's finances, user defined reports and much more. Serves as a tool for the club's officers.";
fDesc[2] = "more. Print labels, reports, and rosters. Many customizable features. Free telephone and online support!";
fDesc[4] = "collecting software in the business! EzStamp is the worlds #1 Stamp Inventory program to manage your stamp collection with over 142 countries, SCOTT #'s, all with full color images supplied! Our USA database has over 18,300 unique entries PLUS the largest repository of images ( over 19,200 stamp images + 36,700 stamps listed on our CD ). We also include the PNC (Plate Number Coil) database with 1375 separate entries! Also included are US Revenues, UN, Canada, CDN Provinces, Duck Stamps, Hawaii, Confederate States, Ryukyus, Palau, Philippines, Micronesia, Marshall Islands! Reliable current market values are pre supplied with all databases so you can accurately value your stamp collection. Try our FREE DEMO and see for yourself the features that no other stamp collecting software has and how easy it is to use.";
fDesc[5] = "(fixtures, chairs, etc.), membership dues, Notes and Documentation. In addtion get real time stats member statics.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}