var fDesc=new Array();
fDesc[0] = "PFX provides the ability to import certificates and private keys from a PFX file onto a computer.
Main Features:
- Choose whether a warning dialog should be displayed whenever the private key is accessed.
- Mark the private keys as re-exportable.
- Store public/private key pairs in the local machine keyset.
- Import certificates into the local machine certificate store, or the current user certificate store.";
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 = '';
}
}