function passWord() 
{	

	var passw = prompt('Please Enter the password to enter the Facilitator Page','')
	if(passw == "facilitator")
	{
		document.location="/facilitator_notes_extra";
	}
	else
	{
		document.location="/facilitator_notes";
	}
}

