﻿var value = getURLParam("secc");
var urltextpathjs = window.location.pathname;
if((value!=null)&&(value!=""))
{
    if (value == "1") { document.bgColor = "#252525"; }
    if (value == "3") { document.bgColor = "#252525"; }
    if (value == "5") { document.bgColor = "#252525"; }
    if (value == "6") { document.bgColor = "#252525"; }
}else{
    document.bgColor = "#252525"; //default
    if (urltextpathjs.indexOf("playlist") > -1) { document.bgColor = "#252525"; }
    if (urltextpathjs.indexOf("interactiva") > -1) { document.bgColor = "#252525"; }
    if (urltextpathjs.indexOf("programacion") > -1) { document.bgColor = "#252525"; }
}
    

