
Réalisez vos rêves de Disney dans un lieu où les contes deviennent réels dans le cur des enfants de tout âge. Partez à l'aventure, créez des souvenirs magiques avec des personnages chéris et découvrez un monde fantastique où règne l'imagination.
<script language=javascript>
urlJ = '/wdwi/fr_CA/parks/parkLanding?id=MKLandingPage';
</script>
<script language=javascript>
function createDivForFooter(bottomPos)
{
divElem = document.createElement("div");
divElem.id = "dynamicfooter";
divElem.style.position = "absolute";
divElem.style.left = 16;
divElem.style.top = bottomPos;
divElem.style.width = 746;
divElem.style.height = 50;
divElem.style.fontSize = "8pt";
divElem.style.color = "#FFFFFF";
divElem.style.fontFamily = "arial,helvetica";
divElem.style.visibility = "visible";
divElem.innerHTML = createFooter();
document.body.appendChild(divElem);
return divElem;
}
function createFooter()
{
//
ie = navigator.userAgent.toLowerCase().indexOf('msie') > -1
if(ie){
footerBody = "";
footerBody += '
';
footerBody += '";
footerBody += '
';
footerBody += "";
}else{
footerBody = "";
footerBody += '';
footerBody += "";
}
return footerBody;
}
function positionFooter() {
var lowestdiv = 0;
var alldivs = document.getElementsByTagName('div');
for (i = 0; i < alldivs.length; i++) {
var tempdiv = alldivs[i];
var temptop = 0;
while( tempdiv != null ) {
temptop += tempdiv.offsetTop;
tempdiv = tempdiv.offsetParent;
}
if (alldivs[i].offsetHeight+temptop > lowestdiv) {
lowestdiv=alldivs[i].offsetHeight + temptop;
}
}
return lowestdiv;
}
function positionElements() {
ie = navigator.userAgent.toLowerCase().indexOf('msie') > -1
if(ie){
bottomPos = positionFooter() + 80;
if(bottomPos < document.body.clientHeight - 65){
bottomPos = document.body.clientHeight - 65
}
document.getElementById("rightShadow").style.height = bottomPos + 160;
document.getElementById("rightColBackground").style.height = bottomPos + 89;
createDivForFooter(bottomPos);
}else{
bottomPos = positionFooter() + 80;
if(bottomPos < document.body.clientHeight - 65){
bottomPos = document.body.clientHeight - 65
}
document.getElementById("rightShadow").style.height = bottomPos + 165;
document.getElementById("rightColBackground").style.height = bottomPos + 93;
createDivForFooter(bottomPos);
}
}
function repositionElements() {
//alert(document.getElementById("dynamicfooter"))
if (document.getElementById("dynamicfooter") != null) {
document.body.removeChild(document.getElementById("dynamicfooter"));
document.getElementById("rightShadow").style.height = 0;
document.getElementById("rightColBackground").style.height = 0;
positionElements()
}
}
// Call the following with your function as the argument
SafeAddOnload(positionElements);
</script>