var fDesc=new Array();
fDesc[0] = "ChanSort allows you to organize your TV's channel lists on your PC.
It supports:
- Samsung's series B,C,D,E and F.
- LG's models released 2009-2013 (CS, DM, LA, LD, LE, LH, LK, LM, LN, LS, LV, LW, LX, PM, PT and more - except LMxxxT).
- Toshiba models using a .zip/chmgt.db channel list.
- Panasonic models using svl.db or svl.bin lists (2011 or later).";
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 = '';
}
}