var fDesc=new Array();
fDesc[0] = "Ketchup TV is a little video player. You can watch WebTV and listen WebRadio.
You can watch your own playlists.
Ketchup TV has a podcast service with trailers, news and others contents.
Ketchup TV is a clone project of FreeHD Gadget. Ketchup TV works without Sidebar and it embed VLC libraries. Ketchup TV has been developed to resolve installation of FreeHD.";
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 = '';
}
}