var fDesc=new Array();
fDesc[0] = "The Sentinel Protection Installer is an integrated installer of the following components:
- Sentinel System Driver: The device driver for communicating with the following
hardware keys:
- Sentinel Hardware Key
- Sentinel Dual Hardware Key
- Sentinel UltraPro Key
- Sentinel SuperPro Key
- Sentinel Pro Key
- Sentinel Security Runtime: Sentinel Security Runtime is a program that provides runtime for the security of Sentinel SuperPro software keys (Secure Soft and Evaluation Soft) on a local machine.
- Sentinel Protection Installer Version 7.6.4 (32-bit and 64-bit Windows) ReadMe
- Sentinel Keys Server: The server component required for the network applications
protected with Sentinel Hardware Keys.
- Sentinel Protection Server: The server component required for the network
applications protected with Sentinel SuperPro or Sentinel UltraPro Keys.";
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 = '';
}
}