var fDesc=new Array();
fDesc[0] = "The SQL Backup Restore tool is a helpful utility which database administrators can use to backup and restore databases with ease.
SQL Backup Restore has the following advantages over a traditional detach/attach operation:
- Backups are consolidated into a single file — no more hunting around for a missing log file.
- SQL Backup Restore automatically creates database files at the correct location for your database, you do not need to manually copy them into place.
- The simple interface allows for a foolproof restore into a new database.";
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 = '';
}
}