var fDesc=new Array(); fDesc[0] = "This handy tool allow you to do a stock lookup of a stock or mutual fund symbol.
You can maintain a list of your securities, along with the number of shares you have of each security. A daily process can be scheduled to run an inquiry for each of your securities and record that information into the database . When you run your reports, the value of each of your securities will be calculated, along with a total worth. Stock and Security Lookup: Company Setup Information Retrieve the latest quote for a selected Stock, Mutual Fund or Index. Maintain Securities: Record Hours Worked Maintain your Stocks, Mutual Funds and Indexes by entering the Symbol and the number of shares you own. You may also track other Securities by adding them to the list with a zero share ownership. Reports: several reports are available for viewing or printing."; 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 = ''; } }