var fDesc=new Array();
fDesc[0] = "NovaBACKUP Business Essentials offers Windows server backup for both physical and virtual machines a single, all-inclusive solution with remote setup assistance. Protect your physical servers and virtual machines with a single license and a single installation for one low price. Works on Windows Server 2016, 2012 R2, 2012, 2010 and 2008, plus up to Hyper-V 2016 and VMware vSphere 6. Perform Exchange and Microsoft SQL server backup with granular restore. Database backup can be done from the same application, without additional add-on costs or separate plugin installations. Supports up to SQL 2016 and Exchange 2016.";
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 = '';
}
}