var fDesc=new Array();
fDesc[0] = "LinnGui is an open source UPnP control point.
Features:
- Queue music from your Media Servers to any Media Renderer in your home
- Supports UPnP AV V1.0 Media Servers
- Supports UPnP AV V1.0 Media Renderers
- Supports Linn DS products ( Klimax DS, Akurate DS, Sneaky Music DS)
- Browse your home room by room
- Supports Sonos ZonePlayers and ZoneBridges by setting their Zone
-Supports UPnP AV V1.0 Media Renderers by setting their "Friendly Name"
- Standard transport controls (Play, Pause, Stop, Skip Forward, Skip Back)
- Standard preamp controls (Volume, Mute, Linn Source Selection)
- Fully skinnable
- Playlist control
- Runs on Linux, Windows XP, Mac OS X (using Mono or .NET 2.0)
- Written in C#";
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 = '';
}
}