var fDesc=new Array();
fDesc[0] = "Covered Calls Plus Stock Option Trading Software - Take advantage of high Volatility by writing Covered Calls.
Features :
- Instantaneous option symbol roots and cycles for any listed option, ETF, and HOLDRS*.
- Fine tune establishing, rolling, adding to, or closing a covered Call position, with or without protective Puts.
- Compare potential returns of rolling a position, verses maintaining the current Covered Call / Protective Put position until expiration.
- Accurate calculation of the rate of return, no matter how many times a position has been rolled, added to, or reduced.
- Gauge the probability of future Stock price changes using automatically generated statistical probability values.
- Manipulate the Black/Scholes formula to evaluate hypothetical scenarios.";
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 = '';
}
}