var fDesc=new Array();
fDesc[0] = "IOTA is a next generation public distributed ledger that utilizes a “Tangle”, at its core. The Tangle is a new data structure based on a Directed Acyclic Graph; it has no Blocks, no Chain, and also no Miners. Since there are no miners, each participant in the network that wants to make a transaction has to actively participate in the consensus of the network by approving 2 past transactions.";
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 = '';
}
}