var fDesc=new Array();
fDesc[0] = "Kitty Viewer is, ultimately, Viewer 2 based, with the following extra features:
-Direct Flickr uploads when taking snapshots
-WindLight in inventory, via specially named notecards (*.wl, *.ww)
-Growl notifications (OS X only, for now)
-Now playing notifications for the current stream (inspired by, but not taken from, Imprudence)
-Viewer profiles, which allow you to quickly swap between different sets of settings.
-(more is coming)
Additionally, there are some minor usability tweaks to Viewer 2:
-The Ctrl-T shortcut for the IM window from 1.23 has been restored
-Right clicking the info button in the address bar brings up the About Land floater
- The "Nearby" tab in the sidebar gives distance to everyone
-Agent UUIDs show in profiles, and can be copied from the mouse hover floater";
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 = '';
}
}