var fDesc=new Array();
fDesc[0] = "Purpose of this tool is to have an open source tool to download/process EOD , F&O and real time data from Indian stock exchange websites and promote future developments from community.Features:
Download EOD data from NSE & BSE and convert it to ASCII format
Scheduled download and import into MS database.
Download EOD data from NSE & BSE for a specific symbol on entire life
Download Corporate action and alert the user about splits and other changes
Download EOD data from NSE & BSE for a specific symbol on entire life and fix the splits and other changes
Download and View real time Quotes";
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 = '';
}
}