var fDesc=new Array();
fDesc[0] = "Vss2Git project contains several components:
Vss2Git is a Windows GUI application that exports all or parts of an existing Microsoft Visual SourceSafe 6.0 (VSS) (Wikipedia) repository to a new Git repository. It attempts to construct meaningful changesets based on chronologically grouping individual project/file revisions.
VssDump is a console-based diagnostic tool that prints a plain-text dump of the contents of a VSS repository.
VssLogicalLib provides a .NET API for reading the contents and history of a VSS repository.
VssPhysicalLib is a set of low-level classes for reading the various data files that make up a VSS database.
HashLib is a generic stateless hashing API that currently provides 16- and 32-bit CRC generation.";
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 = '';
}
}