// html on atv screws up ad tracking. all html should be called from tv.disney.go.com 09/03/18
var phd_loc=document.location; //the current URL

if(phd_loc.host=="atv.disney.go.com"){
	var redirectloc=phd_loc.protocol+"//tv.disney.go.com"+phd_loc.pathname+phd_loc.search;
	top.location.replace(redirectloc);
}
