var fDesc=new Array();
fDesc[0] = "Trading system software that combines traditional analysis techniques with artificial intelligence.
Use the NeuroShell Trader to build your model and backtest your trading system on out-of-sample data prior to entering the market. Mix data from other instruments such as indexes when building a stock model, for example. Create models and view results for multiple instruments in the same chart with a single pass through the model building process.";
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 = '';
}
}