﻿function SubmitPass()
	{
	if (document.getElementById("txt_password").value == 'willett')
		{
		window.location="http://www.allclearfranchising.com/franchisehome.html";
		}
	else
		{
		alert('Incorrect Password');
		}
	}

