var fDesc=new Array();
fDesc[0] = "LiteSpeed Engine for SQL Server is a driver-based technology that enables you to take full advantage of LiteSpeed’s unrivaled compression and encryption — without having to modify SQL scripts. With this drop-and-replace solution, you can continue to use native or third-party backup tools, plus LiteSpeed’s flexible time- and space-saving features.
Main Features:
- Compress data by up to 95 percent
- Reduced backup times by up to 75 percent
- Secure backups with integrated encryption (up to AES 256-bit)";
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 = '';
}
}