var fDesc=new Array();
fDesc[0] = "XLSafe PRO is the most complete protection software designed for Microsoft ® Excel spreadsheets. With XLSafe PRO you can:
-Protect databases and sensitive data stored in Microsoft ® EXCEL.
-Prevent employees from compromising company data and sensitive information by stealing or transimitting your spreadsheets to other computers.
-Restrict access and use of your Microsoft ® EXCEL spreadsheets only for authorised users.
-Prevent copying, pasting and printing data inside your spreadsheets.
-Easily specify the cells that users are allowed to -Specify trial periods and time expiration periods for your spreadsheets.
- Protect your spreadsheets against Microsoft ® Excel password recovery software and other third party intrusion tools.
-Access all protection aspects of your spreadsheet via the innovative XLSafe PRO control panel.
-XLSafe PRO files are stand-alone and only require a Windows version of Microsoft ® Excel to run on a user's computer.";
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 = '';
}
}