var fDesc=new Array();
fDesc[0] = "188OMS features quality financial information on the Internet that includes sound investment ideas, unbiased analyst research, precise and up-to-date market data, powerful financial tools that you can use to make the right investment choices; all within a click away at anytime anywhere.
Main features:
- Realtime streaming quotes for timely Bursa Stock Price information.
- Intraday time & sales and trade-summary matrix to track every trade.
- Intraday queue data to track first-level buy/sell queue changes.";
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 = '';
}
}