
function FinanceAndAgreement()
{
	var pw = "chris";
	
	var response = prompt("Enter password to view Finance and Open Agreement. If you don't have password, Contact Us through the link above." );
	
	if ( response && response.toLowerCase() == pw )
	{
		window.location = "openagreement.htm";
	}
	else if ( response )
	{
		alert("Invalid password, try again, or click the Contact Us link to ask for a password" );
	}
}

function CheckIt(pw_in)
{
	var pw = "pure70";
	if ( pw_in == pw )
		return 1;
	else
		return 0;

}