var fDesc=new Array();
fDesc[0] = "SQL Data Examiner compares and synchronizes the contents of Microsoft SQL Server databases. It is an easy-to-use tool that handles any data migration process with just a few mouse clicks. SQL Data Examiner takes care of the routine manual tasks, thus simplifying your work as a DBA or a developer. It saves you precious time and allows you to avoid hours of tedious manual work.
The tool compares selected databases and displays the results in a user-friendly way for you to review. Using this detailed description of the differences between databases, you can synchronize them and make updates in a couple of seconds with just a few mouse clicks.
SQL Data Examiner allows developers to choose their level of involvement - from step-by-step processing to full automation. But even when you choose automatic one-click synchronization, you can still undo it any moment to adjust the settings. SQL Data Examiner is a professional solution that simplifies the process of comparison and synchronization, and saves your time, too. Try it yourself!";
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 = '';
}
}