// JavaScript Document

	function verifyPassword()
		{
			// Declare static password here 	
			var pw = "1170";
			
			// Set url of success and failure page here
			var successPage = "cwa-1170home.html";
			var failurePage = "clients.html";
			

			if (document.fLoginForm.pword.value == pw)
				{
					document.fLoginForm.action = successPage;
					document.fLoginForm.submit();
				}
			else
				{
					document.fLoginForm.action = failurePage;
					document.fLoginForm.submit();
				}
		}
