var fDesc=new Array(); fDesc[0] = "PST Data Structure View Tool (PSTViewTool) is a tool supporting the PST file format documentation effort. It allows the user to browse the internal structures of a PST file.

PSTViewTool is a MFC/C app developed in Visual Studio. Other than MFC, it has no external dependencies.

PSTViewTool is largely complete with respect to its goals, and it is no longer actively being enhanced. However, patches and bug reports are welcome."; 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 = ''; } }