function pwcheck() {
var passwort
passwort=prompt("Please enter the password!","");
if (passwort=="PL2006") {
location.href="admin.asp";
}
else {
alert("The password is incorrect!");
}
}



