var fDesc=new Array();
fDesc[0] = "An open-source custom viewer for virtual worlds like "SecondLife."
Major features:
* Custom Viewer 2.0 UI - Ability to use custom skins.
* Custom Deferred Render Pipeline.
* Global Illumination, Projected textures, SSAO, Touch Glow etc.
* Modified Camera Controls.
* Post Process Effects, Including Anaglyph 3D shader.
* Multi wearables - Multi Attachment System.
* Extra Windlight Settings and Enhanced Environment Controls.
* Ability to control visual elements such as Hover text.
* Enhancements to Build Controls, Planar textures , Transparency.
* Extra Controls for shadows, viewer, performance, global illumination.
* Higher Framerates on supported hardware.";
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 = '';
}
}