var fDesc=new Array();
fDesc[0] = "Shubha RT plugin for Amibroker is an RTD client. It provides Real-Time streaming quotes from RTD server like, NEST Trader, Zerodha Trader etc. Application provides data in tick format and various intervals starting from 500 milliseconds, 1 second onwards.
You can also add more fields to pull any extra data. There is no restriction on no. of symbols to pull data or refresh rate.";
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 = '';
}
}