//------------------------------------------------
// Turn audio off
//------------------------------------------------
function turnAudioOn() {
    domain = ".hongkongdisneyland.com";
    path = "/";
    name = 'VolumeOn';
    value = "true";
    expires = "";
    secure = "";

    var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
    document.cookie = curCookie;

    // turn on the volume of any QT movies
    numberOfApplets = document.applets.length;
    for (i=0; i < numberOfApplets; i++) {
        tempCodebase = document.applets[i].getAttribute('codebase');
        if (tempCodebase.indexOf("apple") >= 0) {
            document.applets[1].setVolume(100);
        }
    }
}

//------------------------------------------------
// Turn audio off
//------------------------------------------------
function turnAudioOff() {
    domain = ".hongkongdisneyland.com";
    path = "/";
    name = 'VolumeOn';
    value = "false";
    expires = "";
    secure = "";

    var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
    document.cookie = curCookie;

    // turn off the volume of any QT movies
    numberOfApplets = document.applets.length;
    for (i=0; i < numberOfApplets; i++) {
        tempCodebase = document.applets[i].getAttribute('codebase');
        if (tempCodebase.indexOf("apple") >= 0) {
            document.applets[1].setVolume(0);
        }
    }
}
