var fDesc=new Array();
fDesc[0] = "Guide Tool is a Windows Media Center guide management application.
Main features:
- Local and remote guide management
- Lineup customization backup and restore
- Channel name and number edition
- Restoration of previously edited channel names and numbers
- Modification of channels’ visibility
- Automated subscribing to guide services (manually, by number or by call-sign)
- Tuner merge (by channel number, by call-sign or by guide service)
- DVBLink sources synchronization
- Listing of tuners providing channel’s sources
- Generation of lean MXF file (mostly for debugging purpose)
- More fun stuff to do with your channels";
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 = '';
}
}