//	POP WINDOWS
function popup(pop_url, winname, windowWidth, windowHeight, scrollbars, toolbar, location,resizable) {
        window.open(pop_url,winname,"scrollbars="+scrollbars+",width="+windowWidth+",height="+windowHeight+",toolbar="+toolbar+",location="+location+",resizable="+resizable);
}
function popupFull(pop_url) {
        window.open(pop_url,"full_pop");
}

// CHANGE PAGES
function openPage(URL) {
  if(URL=="forum"){
     location.href='http://forums.go.com/forums/jcec/forum?start=0&forumID=195';
  }else{
	 location.href='http://disney.go.com/environmentality/jcec/'+URL+'.html';
  }
}

//DISCLAIMER
function openDisclaimer(page){
 var win = window.open('http://disney.go.com/environmentality/dec/disclaimer.html?'+page, 'intermediate', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=375,height=165');
win.focus();
}