//RUMORS 2009
function passWord() {
var testV = 1;
var pass1 = prompt('Please Enter Your Login Information',' ');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1.toLowerCase() == "50rumors09") {
window.open('admin/rumors.html');
break;
} 
testV+=1;
var pass1 = 
prompt('Incorrect Login Information Supplied, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3) 
history.go(-1);
return " ";
} 

// Tuna Christmas 2009
function passWord2() {
var testV = 1;
var pass1 = prompt('Please Enter Your Login Information',' ');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1.toLowerCase() == "gtuna09") {
window.open('admin/gtuna.html');
break;
} 
testV+=1;
var pass1 = 
prompt('Incorrect Login Information Supplied, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3) 
history.go(-1);
return " ";
} 


// The Foreigner
function passWord3() {
var testV = 1;
var pass1 = prompt('Please Enter Your Login Information',' ');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1.toLowerCase() == "foreigner50") {
window.open('admin/foreigner.html');
break;
} 
testV+=1;
var pass1 = 
prompt('Incorrect Login Information Supplied, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3) 
history.go(-1);
return " ";
} 


// The Music Man
function passWord4() {
var testV = 1;
var pass1 = prompt('Please Enter Your Login Information',' ');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1.toLowerCase() == "musicman09") {
window.open('admin/musicman.html');
break;
} 
testV+=1;
var pass1 = 
prompt('Incorrect Login Information Supplied, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3) 
history.go(-1);
return " ";
} 

