var fDesc=new Array();
fDesc[0] = "StampCAT is a powerful stamp collector database program that helps you catalog and manage of your stamp collection. StampCAT will help you monitor what you have, where it is, and the total value of your collection.
Main features:
- Store information about an unlimited number of stamps.
- Add personal notes.
- Store stamp images.
- Analyze your collection in a variety of ways with the statistics module";
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 = '';
}
}