function load_is_movies(video_location, channel_id) {
    var mediaPlayer = document.getElementById("MediaPlayer");
    mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:clevver_movies' + channel_id +'&mswmext=.asx';
    mediaPlayer.controls.play();
}

function load_is_music(video_location, channel_id) {
        var mediaPlayer = document.getElementById("MediaPlayer");
    mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:clevver_music' + channel_id +'&mswmext=.asx';
    mediaPlayer.controls.play();
}

function load_is_games(video_location, channel_id) {
        var mediaPlayer = document.getElementById("MediaPlayer");
    mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:clevver_games' + channel_id +'&mswmext=.asx';
    mediaPlayer.controls.play();
}

function load_is_ctv(video_location, channel_id) {
    var mediaPlayer = document.getElementById("MediaPlayer");
    if(channel_id == 'Test'){
        mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:Test&mswmext=.asx';
    } else {
	    mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:clevver_ctv' + channel_id +'&mswmext=.asx';
    }
    mediaPlayer.controls.play();
}

function load_is_tv(video_location, channel_id) {
    var mediaPlayer = document.getElementById("MediaPlayer");
    mediaPlayer.URL = 'http://web.lightningcast.net/servlets/getPlaylist?ver=2.0&nwid=11375&audit=param&content=' + video_location + '&format=Video-Windows-300-320x240&level=ClevverMediaLLC:clevver_tv' + channel_id +'&mswmext=.asx';
    mediaPlayer.controls.play();
}