var chromeColor = "#ffffff";
var chromeWidth = 994;

var bCrumbLevel_1 = "Entertainment";

var bCrumbLevel_2_text = "Disney Video + DVD";
var bCrumbLevel_2_url = "http://disney.go.com/disneyvideos/index.html";

var bCrumbLevel_3_text = "Tim Burton's Nightmare Before Christmas";
var bCrumbLevel_3_url = "http://disney.go.com/disneyvideos/animatedfilms/nightmarebeforechristmas";

var legalFooterColor = "#ffffff";

var legalFtrCpyRgt = "&copy; Disney. All rights reserved.";

var legalFtrOpts = ["Register","http://transfer.go.com/cgi/transfer.dll?srvc=dis&goto=https://register.go.com/bvhe/chooseAge&name=g_legalFooter_register","Guest Services","http://transfer.go.com/cgi/transfer.dll?srvc=dis&goto=http://home.disney.go.com/guestservices/faqs&name=g_legalFooter_guestservices","Help","http://transfer.go.com/cgi/transfer.dll?srvc=dis&goto=http://www.disneystudiohelp.com&name=g_legalFooter_help"]
	
	
	
window.focus();

// RESIZE POPUP WHEN COMING FROM DISNEY PICTURES HOMEPAGE
// DOCTYPE NEEDS TO BE HTML FOR THIS TO WORK
function resizeMe(width,height) {
	if (window.innerWidth){popWidth=window.innerWidth;popHeight=window.innerHeight;}else{popWidth=document.body.clientWidth;popHeight=document.body.clientHeight;}
	var left=(screen.width-width)/2;
	var top=(screen.height-height)/2;//FIGURE THE CENTER OF THE SCREEN
	self.window.moveTo(left,top); //MOVE THE POPUP TO THE CENTER
	popWidth=width-popWidth;popHeight=height-popHeight;window.resizeBy(popWidth, popHeight);//MAKE THE POPUP THE RIGHT SIZE
}