<!-- begin

function passcheck() {
	var pphrase = "davinci";
	var checkpass = prompt('Passphrase:','');
	if (checkpass != pphrase) {
		self.location.href = '../index.html';
	}
	else {
		return;
	}
}
window.onload = passcheck;

// end -->