var fDesc=new Array();
fDesc[0] = "Confrontation Manager helps you to persuade others to want what you want. Using the science of Confrontation Management™, Confrontation Manager allows you to model interactions between organizations (or individuals) and develop plans to persuade others that your position is in everyone's best interest.
Confrontation Manager is an essential tool for those trying to produce results against a complex backdrop of multiple stakeholders with (potentially) conflicting objectives.";
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 = '';
}
}