var fDesc=new Array();
fDesc[0] = "Dash Wallet is a free online dash/darkcoin wallet which you can use to make worldwide payments for free. We make paying with dash/darkcoin easy and secure available anywhere on your phone or desktop.
We are not a bank, you retain complete ownership of your Money. We cannot view your balance, see your transactions or make payments on your behalf.
Dash(DRK) is the first privacy-centric cryptographic currency with anonymous block transactions powered by DarkSend. Dash now has a new kind of hybrid reward system similar to POW with POS. Those who run masternodes being rewarded via 10% of the mining rewards. Masternodes must put up collateral to run, and yet are paid for the work they perform.";
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 = '';
}
}