var fDesc=new Array(); fDesc[0] = "This module is an add on for Stock Predictor product. It allows you to import historical stock quotes data from plain ASCII text files. Initial dialog allows you to select data files. Click "Select Data Source Files" button to specify from which data files should be imported to Stock Predictor. All files must have the same format and located in the same directory on your PC."; 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 = ''; } }