var fDesc=new Array();
fDesc[0] = "Backup Watcher for Interbase allows you to create Backup databases under the control of Interbase 6.x server. Having customized this program once, you can forget about a problem of the data backup. Interbase Bakcup makes databases' backups automatically.
The program has a simple and convenient interface for customizing the backup structures.
While using Backup Watcher for Interbase you create a structure, in which you specify a site of the server, a database, backup files, settings of the backup process and when it should take place.";
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 = '';
}
}