var fDesc=new Array();
fDesc[0] = "ApexSQL Diff is an SQL development tool that can compare SQL Server database tables, views, and all other SQL Server objects..
Features:
- Automate database comparisons, synchronizations and migrations
- Compare live databases, snapshots, scripts, Source control projects, and native backups
- Synchronize unattended with the Command Line Interface
- SQL Server 2014, 2012, 2008 R2, 2008, and 2005 support
- Proprietary parsing engine ensures Error Free Scripts every time!
- Native support for Git, Subversion, TFS, Mercurial and Perforce";
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 = '';
}
}