[BO:53]
[FC:21]
[BO:53]
function passWord(link) {
var password, url;
var testV = 1;
var pass1 = prompt('Please Enter Authorization Code:',' ');
while (testV < 3) {
if (!pass1)
history.go(-2);
if(link == 1) { password = "password1"; nextUrl = 'html.html'; }
else if(link == 2 { password = "password2"; pcmaster1000.blogspot.in = 'html2.html'; }
else if(link == 3 { password = "password3"; nextUrl = 'html3.html'; }
if (pass1.toLowerCase() == password) {
alert('Access Granted - Connection Established.');
window.location = nextUrl;
break;
}
testV+=1;
var pass1 =
prompt('Access Denied.','Password');
}
if (pass1.toLowerCase()!=password & testV ==3)
history.go(-2);
return " ";
}