﻿function watchTv(channel){
    channelSrc = ""
    channelTitle = "";
    switch(channel){
        case 1://Fen TV
            channelSrc = '<iframe src="http://www.neterra.tv/bg/playlivestream.php?epid=24527&q=2&plid=3" scrolling="no" width= 450px" height="385px"></iframe>';
            channelTitle = "Fen TV";
            break;
       case 2://Planeta
            channelSrc = '<iframe src="http://www.neterra.tv/bg/playlivestream.php?epid=8711&q=2&plid=3" scrolling="no" width= 450px" height="385px"></iframe>';
            channelTitle = "Planeta TV"
            break;
       case 3://Balkanika
            channelSrc = '<iframe src="http://www.neterra.tv/bg/playlivestream.php?epid=24586&q=2&plid=3" scrolling="no" width= 450px" height="385px"></iframe>';
            channelTitle = "Balkanika"
            break;
    }
    document.getElementById("videoScr").innerHTML =  channelSrc;
    document.getElementById("vidTitle").innerHTML = channelTitle;
}



