This is the Hint: you need to find that and then read the script very carefully, now in this script, it uses the getYear() function, instead of the getFullYear() function, this is a very bad idea because ever since the milenium getYear has messed up, e.g: in 1984 getYear would print out 84 and in 1999 it would print out 99, but ever since 2000 it started to go above 99 and carry on counting into 100s. From that you should be able to work it out.
a = prompt("Please enter password!","");
date = new Date();
year = date.getYear();
b = year+12;
if(a == b){
alert("Good job! You got it!");
window.location.href=year+".php";
}
else
{
alert("Try it again!");
}
Your help would be most appreciated thnx





