var fDesc=new Array();
fDesc[0] = "Use CoinManage UK coin collecting software to easily & accurately catalogue your UK Coin Collection. Included is a comprehensive database of over 6600 British Milled coins from 1649-present, including Maundy coins, proof sets and bullion coins. Up to date Gold, Silver & Platinum spot prices can be downloaded from the Internet & instantly applied to your bullion coins. Each coin listed is valued in several different grades and mintage figures are shown where available. Use our eBay™ coin search feature to find auctions & research recent selling prices. CoinManage UK ships with several reports, including a Coin Checklist with the varieties you own already marked. Your data will always be safe as our new auto-backup feature will automatically backup the your data at the specified interval.";
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 = '';
}
}