var fDesc=new Array(); fDesc[0] = "Personal Discovery is a Windows application geared towards a single user who wants to create a personal copy of their email. The output format is the same standards based ASCII text format as Group Discovery, and can be read by the Discovery Client. This solution is ideal for end users who:

Are leaving an organization and want to take their mail with them.
Archiving inactive accounts to free up GroupWise user licenses
Create a standards-based GroupWise-independent archive of their email
The Personal Discovery output format is a standards based ASCII text format. This allows any text editor to open and read the email message file."; 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 = ''; } }