var fDesc=new Array();
fDesc[0] = "ChangeAide is a toolkit for Programme and Project Teams using the Product Based Planning approach to deliver results according to defined and managed plans.
Successful Change requires:
- A Vision of what you want to achieve
- Some Dissatisfaction or motivation to do something different today
- Some practical Next steps to move towards the vision.";
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 = '';
}
}