function p() {
	var p = "";
	p=prompt("Enter the Password", "");
	if (p == "respect92") // this is the password. you can change this later
	{location.href= "families.html" } // if the password is correct, it will link to this "welcome.html" page. you can change the name too.

	else {
	location.href= "error.html" }; // if the password is not correct, they will see this page.
}