// JavaScript Document


function show_prompt()
{
var name=prompt("Please enter your password");
if (name=="haohe339")
  {
  open('photos.html');
  }
else 
{
 open('failure.html');
}
}
