var fDesc=new Array();
fDesc[0] = "JBL Risk Manager stock market position sizing software for share traders fully functional position sizing software.
Features:
-Position Sizing or how many shares to trade, done automatically
-Stop Placement calculated automatically -Stop Loss and Trailing Stop exit price
-Integrates with your updated MetaStock data service daily
-Share Trading Diary/Journal for each trade
-Long and Short Trades allowed for with independent performance reporting
-Technical Stop entry is available in place of the automatic Trailing / Profit Stop
-Maximum % Risk per Trade correctly takes into account brokerage charges
-Limits over trading by optimizing your Trading Capital and timing
-Multiple portfolios, Currency entry & Exchanges";
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 = '';
}
}