﻿var siteUrl = "http://www.telugunagar.com/";

function AssignUrl(id,objVal,tdId,category)
{
    document.getElementById(id).src = objVal;
    ApplyBg(category);
    document.getElementById(tdId).className = "tdActiveBg TabBR"; 
    return false;
}
function ApplyBg(category)
{
    if(category == "Telugu Movies")
    {
        document.getElementById("tdTMNR").className = "tdBg TabBR";
        document.getElementById("tdTMNA").className = "tdBg TabBR";
        document.getElementById("tdTMHQ").className = "tdBg TabBR";
        document.getElementById("tdTMLQ").className = "tdBg";
        document.getElementById("tdTMMV").className = "tdBg TabBR";
    }
    else if(category == "English Movies")
    {
        document.getElementById("tdEMNR").className = "tdBg TabBR";
        document.getElementById("tdEMNA").className = "tdBg TabBR";
        document.getElementById("tdEMHQ").className = "tdBg TabBR";
        document.getElementById("tdEMLQ").className = "tdBg";
        document.getElementById("tdEMMV").className = "tdBg TabBR";
    }
    else if(category == "Hindi Movies")
    {
        document.getElementById("tdHMNR").className = "tdBg TabBR";
        document.getElementById("tdHMNA").className = "tdBg TabBR";
        document.getElementById("tdHMHQ").className = "tdBg TabBR";
        document.getElementById("tdHMLQ").className = "tdBg";
        document.getElementById("tdHMMV").className = "tdBg TabBR";
    }
    else if(category == "TV Shows")
    {
        document.getElementById("tdTVNR").className = "tdBg TabBR";
        document.getElementById("tdTVNA").className = "tdBg TabBR";
        document.getElementById("tdTVHQ").className = "tdBg TabBR";
        document.getElementById("tdTVLQ").className = "tdBg";
        document.getElementById("tdTVMV").className = "tdBg TabBR";
    }
    else if(category == "Telugu Video Songs")
    {
       document.getElementById("tdTMRA").className = "tdBg TabBR";
       document.getElementById("tdTMNR").className = "tdBg TabBR";
       document.getElementById("tdTMNA").className = "tdBg TabBR";
       document.getElementById("tdTMHQ").className = "tdBg";
       document.getElementById("tdTMMV").className = "tdBg TabBR";
    }
}
function redirectUrl(obj)
{
    var ID = obj.id;
    var lblName = ID.replace("imgMovieImage","lblVideoName");
    var hdnSection = ID.replace("imgMovieImage","hdnSection");
    var moviename;
    if(-1 != navigator.userAgent.indexOf("MSIE"))
    {               
        moviename = document.getElementById(lblName).innerText;
    }
    else //if(-1 != navigator.userAgent.indexOf("Firefox"))
    {      
        moviename = document.getElementById(lblName).textContent;
    }
    window.parent.location.href = siteUrl + "Movie.aspx?MName=" + moviename + "&MSection=" + document.getElementById(hdnSection).value;
    return false;
}
function redirectMore()
{
    var _cat;
    var _opt;
    if(document.getElementById("movies_hdnSection") != null)
    {
        _cat = document.getElementById("movies_hdnSection").value;
        _opt = document.getElementById("movies_hdnOption").value.replace(/\s+/g, '-');
    }
    if(_cat == "Telugu Movies")
    {
        window.parent.location.href = siteUrl + "Movies/Telugu-Movies/" + _opt;
    }
    else if(_cat == "Hindi Movies")
    {
        window.parent.location.href = siteUrl + "Movies/Hindi-Movies/" + _opt;
    }
    else if(_cat == "English Movies")
    {
        window.parent.location.href = siteUrl + "Movies/English-Movies/" + _opt;
    }
    else if(_cat == "TV Shows")
    {
        window.parent.location.href = siteUrl + "Videos/TV-Shows/" + _opt;
    }
    else if(_cat == "Live TV")
    {
        window.parent.location.href = siteUrl + "Live-TV";
    }
    else if(_cat == "Live Radio")
    {
        window.parent.location.href = siteUrl + "Live-Radio";
    }
    else if(_cat == "Telugu Movie Trailers")
    {
        window.parent.location.href = siteUrl + "Trailers/Telugu-Movie-Trailers";
    }
    else if(_cat == "Hindi Movie Trailers")
    {
        window.parent.location.href = siteUrl + "Trailers/Hindi-Movie-Trailers";
    }
    else if(_cat == "English Movie Trailers")
    {
        window.parent.location.href = siteUrl + "Trailers/English-Movie-Trailers";
    }
    else if(_cat == "MP3 Downloads")
    {
        window.parent.location.href = siteUrl + "MP3-Downloads";
    }
    else if(_cat == "Telugu Video Songs")
    {
        window.parent.location.href = siteUrl + "Video-Songs/" + _cat.replace(/\s+/g, '-');
    }
    return false;
}
function redirectVideo(obj)
{
    var ID = obj.id;
    var lblName = ID.replace("img","lbl");
    var hdnSection = ID.replace("img","hdn");
    window.parent.location.href = siteUrl + "Movie.aspx?MName=" + document.getElementById(lblName).innerHTML + "&MSection=" + document.getElementById(hdnSection).value;
    return false;
}
