var fDesc=new Array();
fDesc[0] = "TFS Workflow Control is a work item custom control for Team Explorer and Team System Web Access 2008 and 2010 . It shows the previous states of the current work item.
The workflow control must be installed on each computer from where the work item will be edited. Use the process template editor on a computer where the workflow in installed to add a new element in the layout of the work item types.";
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 = '';
}
}