var fDesc=new Array();
fDesc[0] = "Throughout the world, more than fifty thousand people have already found that Project Companion is an invaluable day-to-day reference guide to help them use Microsoft Project better. Accessed by a simple browser, users can immediately access the knowledge and best practices within Project Companion to assist them as they work with Microsoft Project.
Although Project Companion isn't a training course in its own right, it does contain lots of best-practice Microsoft Project information. If you want to know how to apply resources to effort-driven tasks, create and apply AutoFilters, find schedule variances and achieve may other objectives, Project Companion has something to offer you:
- Almost 600 keyword definitions relate Microsoft Project and Project Management terminology.
- A full Planning Primer explains the basics of Project Management theory and applies this theory to the use of Microsoft Project.
- Carefully chosen reference topics providing step-by-step guidance on how to use Microsoft Project more effectively.";
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 = '';
}
}