var fDesc=new Array();
fDesc[0] = "Power Indiabulls (PIB) is the integrated online trading platform to invest in Equity, F&O and Commodities. PIB provides the best in the class internet trading features and delivers a seamless and rich online trading experience for its users.
PIB comes with a whole host of online features for the internet trading users ranging from real-time stock prices, to live trading reports, Multiple Market watch. Intraday charting, technical analysis, price alerts , News Room for seasoned investors and traders.";
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 = '';
}
}