
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var password = "service1"

var x = prompt("Enter in the password"," ")

if (x.toLowerCase() == password) {
alert("Come right in \n \n You've entered in the right password")
location = "PLS_Table_of_Contents.htm"
}

else {
location = "Price_Failed.htm"
}

