var fDesc=new Array();
fDesc[0] = "Sportscard Organizer helps you to manage and collect your favorite sport cards.
Main features:
- Users have the ability to enter both common cards and star cards, as well as memorabilia.
- Two custom fields are included to provide the user with the ability to store information about your collection that is unique to you.
- Two card photos can be imported for each card, allowing you to see both the front and back of the card.";
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 = '';
}
}