

	//chrome settings
	var chromeColor = "#666666";
	var chromeWidth = 990;
	var legalFooterColor = "#0869b4";


	function popup(url,name,features){
		var w;
		w=window.open(url,name,features);
		w.focus();
	}

	function closeWindow() {
		window.close();
	}

	function printit(){
		if(oBw.ie5 || oBw.ns4up){
			window.print();
		}else{
			alert('To print this page you must click File and then click Print on the menu bar above.');
		}
	}

	function navBackgroundOn(strMediaRoot,intLevelNum) {
//		strMediaRoot += "media/en_US/global/css/navHeadingBG_on.gif"
//		strMediaRoot = "http://adisneyland.disney.go.com/media/wdce/media/en_US/global/css/navHeadingBG_over.gif";
//		document.getElementById("navTier1_"+intLevelNum).style.backgroundImage = "url(strMediaRoot)";
		document.getElementById("navTier1_"+intLevelNum).style.backgroundImage = "url(http://adisneyland.disney.go.com/media/wdce/media/en_US/global/css/navHeadingBG_over.gif)";		
	}
	function navBackgroundOff(strMediaRoot,intLevelNum) {
		document.getElementById("navTier1_"+intLevelNum).style.backgroundImage = "url(http://adisneyland.disney.go.com/media/wdce/media/en_US/global/css/navHeadingBG_off.gif)";
	}
	function navArrowOn(strMediaRoot,intLevelNum) {
		document.getElementById("navTier2_"+intLevelNum).style.backgroundImage = "url(http://adisneyland.disney.go.com/media/wdce/media/en_US/global/css/navArrow_over.gif)";		
	}
	function navArrowOff(strMediaRoot,intLevelNum) {
		document.getElementById("navTier2_"+intLevelNum).style.backgroundImage = "url(http://adisneyland.disney.go.com/media/wdce/media/en_US/global/css/navArrow_off.gif)";
	}

	function toggleModule(intIndex,strShort,strLong) {
		var objMore = document.getElementById("moreText_"+intIndex);
		var objDesc = document.getElementById("description_"+intIndex);
		if(objMore.innerHTML == "see more") {
			objMore.innerHTML = "close";
			objDesc.innerHTML = strLong;
		} else {
			objMore.innerHTML = "see more";
			objDesc.innerHTML = strShort;
		}
	}







