As soon as you pass level 2, an prompt asking the password for the level 3 is shown.
I tried to enter a random string and get the following message...
And here I am...
Notice that once entering the webpage the prompt would be shown. Just open the developer tools and see what is going on in this page.
Scroll down to the part that prompt out the message box.
Look at the piece of code. The prompt would ask the user's input and compara with a variable named PASSWORD. Despite of the variable hoisting in javascript. The under assignments is counterfeit. See closer to the code. There is another script that has a source named Javascript.
<scripttype="text/javascript"src="JavaScript"></script>
<scripttype="text/javascript"><!--pwd=prompt("Please enter the password for level 3:","");if(pwd==PASSWORD){alert("Allright!\nEntering Level 4 ...");location.href=CORRECTSITE;}else{alert("WRONG!\nBack to disneyland !!!");location.href=WRONGSITE;}PASSWORD="AbCdE";CORRECTSITE="level4-sfvfxc.xhtml";WRONGSITE="http://www.disney.com";//--></script>
Look for the sources and the file named Javascript is right there!
Click on the file and the password is shown!
Here we go!
Conclusion
The techniques needed in this level are
Window prompt
Javascript source inclusion
There is a little tricky in the code in this level. The variable PASSWORD is assigned in two places. One in the html file and another in the source file called JavaScript. Since the JavaScript is upper than the inline script, the PASSWORD is first assigned to the real password.