var fDesc=new Array();
fDesc[0] = "VBASafe is an advanced product specifically designed to protect your VBA code and intellectual property.
Numerous third party tools are available on the internet which can be easily used to break the password security of VBA code.
With VBASafe your VBA code is converted to a format which is unreadable to the human eye but still interpreted as normal code by Microsoft Excel.";
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 = '';
}
}