﻿//var Module_Container;
//function initContainerID(){
//    if ( typeof(Module_Container) === 'undefined')   Module_Container = dnn.getVar('Container_ID');
//}

//function pageLoad(){
//   initContainerID();
//   var target = $get(Module_Container + "");
//}

function ChangeBg(source){
   source.style.backgroundColor = "#cdcdcd";
}
function ResetBg(source){
    source.style.backgroundColor = "transparent";
}
function ChangeBgById(id){
    document.getElementById(id).style.backgroundColor = "#cdcdcd";
}