var fDesc=new Array();
fDesc[0] = "The MBT Desktop is an advanced, yet easy-to-use direct access trading system for US and Canadian equities, options, and futures. The Level II Montage gives you an in-depth, real-time, look at the market of any stock. View the number of shares being bid & offered, prices, and the name of the ECN or Market Maker. The quick quote area of your level II window displays in-depth stock information including volume, high, low, open, close, last price and net change.
The MBT Desktop's easy-to-use order entry interface allows you to control every aspect of your order. Double click on a price in the Level II window to auto-load the price and default quantity. Once your parameters are set, your order is routed to the market with just a click of the BUY, SELL, or CANCEL buttons.";
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 = '';
}
}