var fDesc=new Array();
fDesc[0] = "SourceAnyWhere for VSS is a fast internet and cross-platform VSS solution. It is recommended by Microsoft to VSS 6.0 and 2005 users for fast, reliable and secure access to SourceSafe over TCP/IP. Utilizing a client/server architecture with caching, SourceAnywhere for VSS solves VSS's main issues: slow performance over Internet, unreliable security in a web environment and occasional database corruption.
Featuring delta transfer, compression and Cache Server, SourceAnywhere for VSS is up to 100 times faster than Visual SourceSafe when used remotely.";
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 = '';
}
}