var fDesc=new Array();
fDesc[0] = "The SwiftBox TV software allows you to play music and video from your computer directly to your TV.
Main features:
-XBMC: The most important one, since SwiftBox TV is based on XBMC code.
-Team RazorFish: The talented team who creates XBMC skins.
-FFmpeg: Video decoding.
-SQLite: The media database is using this excellent, industry standard free database.
-CxImage: Loading images and photos. It also uses other libraries like libJPEG, libPNG.
-FreeType: Fonts rendering.
-Python: Python powers all scripting functionality.";
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 = '';
}
}