var fDesc=new Array();
fDesc[0] = "SL My Inventory Viewer is a tool application to help Second Life users organize their avatar's inventory.
SL My Inventory Viewer (SLMIV) is now on a quarterly development schedule since most major features are now implemented.
Operating System:
- Microsoft Windows XP Professional SP3
- Microsoft Windows Vista Ultimate (32bit)
- Microsoft Windows 7 Beta Build 7000
SLMIV Development:
- Work with a copy of the latest version SLMIV Visual Studio project.
- Thoroughly test your working copy.
- Repeat step 1 - 3 until no bugs.
- Commit changes.
- Update issue trackers.
- If needed, make sure joesox updates SLMIV websites with current documentation.";
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 = '';
}
}