var fDesc=new Array();
fDesc[0] = "Kinsky is an open source UPnP control point for iPod/iPhone/iPad/Windows/MacOSX/Linux and PocketPC.
Features:
-Queue music from your Media Servers to any Media Renderer in your home
-Support for album art while browsing your media library
-Track display that supports displaying of album art
-Fullscreen mode with large artwork.
-Advanced playlist manipulation
-Supports UPnP AV V1.0 Media Servers
-Supports all Linn DS products ( Klimax DS, Akurate DS, Sneaky Music DS etc)
-Standard transport controls (Play, Pause, Skip Forward, Skip Back)
-Standard preamp controls (Volume, Mute, Linn Source Selection)";
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 = '';
}
}