var fDesc=new Array(); fDesc[0] = "Darkcoin is a privacy-centric digital currency based on the Bitcoin. It allows you to remain anonymous while you make transactions, similar to cash. With Bitcoin, transactions are published to the blockchain and you can prove that made them, but with Darkcoin the anonymization technology makes it impossible to trace them. This is important because the blockchain is accessible to anyone with an internet connection, a significant drawback for those don’t wish their transaction history and balances to be publicly available."; 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 = ''; } }