var fDesc=new Array(); fDesc[0] = "Standalone application that enable you to create Work Items and organize them in a hierarchical way.
This software also includes:
- WINetwork, an Alert that is aware of Work Item changes, and update related ones using custom schemas.
- Merge Branches driven by Work Items.

Main features:
- WINetwork, create a custom Workflow that reacts on Work Item changes to respond in changing other Work Items.
- Branch Merge driven by Work Item, you no longer have to merge your branches changeset by changeset, it's now driven by Work Items, organized in a hierarchical way.
- Branch comparison of Work Item implementation, a quick query will display what Work Item is implemented in a given branch and not in another one. Hierarchy is also handled, showing you if a Work Item tree is not, totally or partially implemented.
- Team Project administration tool, let you administer all the features of the WICreator easily, Team Project by Team Project."; 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 = ''; } }