var fDesc=new Array();
fDesc[0] = "SSIS Documenter for SQL Server 2005 is a one simple yet powerfull tool to make your life a bit easier.
It is easy to use and it will generate SSIS documentation for you in a matter of seconds.
Features
- Integration with SQL Server 2005 Business Intelligence Studio
- Integration with VS.NET team edition server
- Command line interface to integrate with automated build environments.
- Workflow documentation
- Data flows documentation
- Hierarchical overview";
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 = '';
}
}