/* Global JS File */

// chrome settings
var chromeWidth = 820;
var legalFooterColor = "#fff";
var legalFtrLine1 = "<b>World of Disney</b>";
var legalFtrOpts = ["Jobs","http://destinations.disney.go.com/wod/index?id=JobsPage"]


function popup(url,name,features){
	var w;
	w=window.open(url,name,features);
	w.focus();
}
function loadBackgroundImage(id, imgPath){
	el = document.getElementById(id);
	if(el){
		el.style.backgroundImage = 'url('+ imgPath +')';
		//el.style.backgroundRepeat = 'no-repeat';
		//el.style.backgroundPosition  = 'bottom left';
	}
}
