var fDesc=new Array();
fDesc[0] = "Bitcoin Trader
Software to Trade Bitcoin and Cryptos with manual or automated signals.
Crypto currencies charts and technical indicators.
Available currencies: Ethereum, Ethereum Classic, Bitcoin, Bitcoin Cash, Ripple, Dash, Stellar, Augur, Litecoin, Monero
Signals: The signals are generated by technicals indicators. Chose between 7 indicators wich ones will generates your signals. Follow the trend or wait for a reversal with the MACD and CCI !
Available indicators: TREND, MACD, RSI, CCI, STOCHASTIC, WILLIAMS %R";
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 = '';
}
}