var fDesc=new Array();
fDesc[0] = "Copay is an open-source, multiplatform, multisignature, secure bitcoin wallet platform for both individuals and companies.
Main features:
- Multiple wallet creation and management in-app.
- Intuitive, multisignature security for personal or shared wallets.
- Easy spending proposal flow for shared wallets and group payments.
- BIP32 Hierarchical deterministic (HD) address generation and wallet backups.
- Device-based security: all private keys are stored locally, not in the cloud.";
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 = '';
}
}