﻿// JScript File

function SwitchChannel(ChannelID)
{
    //cambio la classe al bottone nel menu
    
    if (CurrentChannelID) {
        if (CurrentChannelID!='') {
            var ch = document.getElementById('ACategory' + CurrentChannelID);
            ch.className = 'default';
        }
    }
    
    if (CurrentInfoPage) {
        if (CurrentInfoPage!='') {
            var ch = document.getElementById('ACategory' + CurrentInfoPage);
            ch.className = 'default';
        }
    }
        
        
    ch = document.getElementById('ACategory' + ChannelID);
    ch.className = 'active';
    
    CurrentChannelID = ChannelID;
    
    //disabilito overdiv
    if (document.getElementById('overdiv')) {
        document.getElementById('overdiv').style.display = 'none';
        document.getElementById('overdiv').innerHTML = '';
    }
    
    if (document.getElementById('Player')) document.getElementById('Player').uiMode = 'none';
    
    RenderPlayList(ChannelID);
}