var fDesc=new Array();
fDesc[0] = "PM Response helps with iteration planning, discussing project layout approaches, and solving project challenges.
Objective: Plan how to respond to issues and events that impact the project.
Solution Purpose: Use project maps to plan, convert project mind maps to project implementations, represent the project as a project map, use visual diagrams to solve problems and make decisions, and plan resource usage to respond to changes in the project environment.";
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 = '';
}
}