var fDesc=new Array(); fDesc[0] = "Neural Pattern Recognition is implemented using Kohonen neural network and can recognize common stock patterns such as Head & Shoulders, Double Tops, Double Bottoms, Rounding Top, Rounding Bottom, Up Trend, Down Trend, Range, Triangle.
You could simply draw a stock pattern in the top window and click on 'Recognize' button."; 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 = ''; } }