var fDesc=new Array();
fDesc[0] = "Price consolidation, in many different forms, often precedes the strengthening of trends, or the reversal of price directions. When price consolidation forms, it usually forms discernable patterns that breakout in a common manner. The PRS is 70% accurate for many of the chart patterns it automatically spots.
The PRS scans multiple currencies and time frames looking for price consolidation patterns. When a forming pattern is identified, traders using the PRS will be alerted. Completed patterns offer traders a look at where the price direction is most likely to head, thus offering a potential take profit region. The PRS can be used to spot potentially strong trades, or to confirm the strength of current positions held.";
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 = '';
}
}