var fDesc=new Array(); fDesc[0] = "dtsdoc is a powerful tool to help you document your SQL Server data transformation
packages. It can produce detailed documents describing your DTS packages.

With dtsdoc you are not tied to a specified output format or fixed look, you are
in control. dtsdoc uses XSL templates to transform a XML file that
holds the DTS packages descriptions to get the final documentation. Sample XSL
template is included to get HTML files ready to be published or printed.


dtsdoc has been designed to be scheduled, it has a full featured command
line interface, to ensure that your server documentation is always up to date."; 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 = ''; } }