var fDesc=new Array();
fDesc[0] = "PBB Updater supports PBB files, Collections, Resource Associates, Annotations, and Workspaces. It has the abililty to specify a custom location for resource, automatically moving existing files to the new location.
Main Features :
- PBB files go to %PROGRAM FILES%\Libronix DLS\Resources\PBB. StillTruth.com files will have their sub folder and Walther Library will have their sub folder.
- Collections, Resource Associations, Annotations, and Workspaces all go to MY DOCUMENTS\Libronix DLS, into their own appropriate sub folder
- Automatically will move existing PBB files to their new expected location
- Support for automatic location finding in 64-bit editions of Windows
- Throttled to only 4 active downloads at a time
- Added "Auto Updating" capabilities. The application shows up as a provider in the list. If you select to download it, then the update will download, shutdown the application and install the new version - automatically moving over your custom resource file location (as part of the auto update).";
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 = '';
}
}