var fDesc=new Array();
fDesc[0] = "signoTools is a pack with four powerful components for Office: signoImager/2, signoIntegtrator/2, MS-Office Add-In, RSA Manager.
Main features:
- Capturing and saving of the signature as an image in the system or clipboard.
- Capturing of the signature as an image and insert as graphic at cursor position.
- Installs Ribbons in the menu bar in MS-Word and MS-Excel from version 2007.
- Certificate management.";
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 = '';
}
}