var fDesc=new Array();
fDesc[0] = "SQL Server Find is a database tool for use with Microsoft SQL Server. With SQL Server Find you can search for database objects using search criteria like:
* keywords and common expressions
* creation date
* object type (e.g. views, procedures, triggers)
* object name (using common expressions)
* object size
Based on the given criteria, SQL Server Find locates the database objects that match the specified criteria and displays them in a list.
One of the advanced features is the ability to search multiple databases in multiple Microsoft SQL Servers at the same time. This makes it an invaluable tool for developers of database applications using Microsoft SQL Server.";
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 = '';
}
}