function letmein() {

var getin = prompt("What is the password?","")
if (getin=="excellence") {
	document.location.href='intro.html'
}
else {
	if (getin=="null")
	{location.href='index.html'}
	else
	if (getin!="excellence")
	{location.href='index.html'}
}

}
