function process()
{
	input = prompt('Please enter the password', ' ');

	if(input == "howcoolisthat")
	{
		alert('Permission Granted');
		window.location = "secure.html";
	}
	else
	{
		alert('Incorrect Password');
		history.back(1);
	}
}