function getPW() {
	var pw = prompt("Password: ","");
	if (pw == "lowdo") {
		document.location = "poc_inventory.html";
	} else {
		alert("Incorrect password.");
	}
}