var fDesc=new Array(); fDesc[0] = "Quant Analyzer is an online trading strategy analyzer that can find weak points and potential for improvement. It lets you review each strategy and find out if it can be improved, for example, by not trading on special days using What If scenarios. It uses Monte Carlo on strategy back-test to find out if the strategy will survive in real world."; 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 = ''; } }