// JavaScript Document
function NavToPage()
{
	var f = document.forms[0];
	
	if (f.password.value == "myriad")
	{
		alert("Thank you");
		// Navigate to the link
		window.location = ("RA-Reps2.html");
	}
	else
	{
		alert("Access Denied");
		// Navigate back to the calling page
		//window.location = ("nopermission.htm");
	}
/**/
}