var fDesc=new Array(); fDesc[0] = "Stock Live DATA IMPORTER for AmiBroker is a program that brings you Live Stock Data and is based on Google Finance Data. The program allows you to download data and save it as Text files which can be used in many Technical Analysis. It works with both Trial and Licensed version of Amibroker."; 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 = ''; } }