var fDesc=new Array();
fDesc[0] = "A totally new package viewer which enables you inspect the inside world of either an object package, or a create-a-sim package.
Main features:
- Detecting the type of packages
It will show you the type of package it has and whether it has several items doesn't matter.
- Thumbnail Support
It can read your cache now. As long as the you keep your thumbnail package save and sound, you will see all you want.
- Package Status Support
Red or Green block to show whether it has been disabled by the program. Full control of your packages!.
- Packages Outside CC Folder Support
Just tell the program where you want to inspect, and here they come!
- Corrupted Package Detection Support
It will show you a bad package wherever it is.";
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 = '';
}
}