var regExpressionObj = new RegExp(["[.]*/abtus/ourorg/aud/media/testresults.htm$"]);
	var path = new String(document.location.pathname);
	var matchIndex = regExpressionObj.test(path);
	if(matchIndex) {
		var password = prompt("Please enter password for this page:","")
		if (password != "needtimeoff") {
			alert("Incorrect Password!")
			document.location = "http://www.co.pierce.wa.us/abtus/ourorg/aud/default.htm"
		}
	}

   //var regExpressionObj = new RegExp(["[.]*/abtus/ourorg/aud/CandidateFiling/CandidateFilingInfo.htm$"]);
	// var regExpressionObj = new RegExp(["[.]*/abtus/ourorg/aud/CandidateFiling/CandidateFiling[Info|Success][.]*"]);
	var regExpressionObj = new RegExp(["[.]*/abtus/ourorg/aud/VoterPamphlet/VoterPamphlet[Info|Success].htm"]);
	var path = new String(document.location.pathname);
	var matchIndex = regExpressionObj.test(path);
	if(matchIndex) {
		i = document.cookie.indexOf("VOTERPAMPHLETLOGIN", 0); 
		if (i <= 0) {
			var errorText = "You have not successfully logged in. Please be sure you have cookies enabled in your browser (for Internet Explorer, go to Tools/Internet Options/Privacy;"
			errorText = errorText + " for Netscape go to Edit/Preferences/Privacy and Security)."
			alert("errorText");
			window.location="VoterPamphletLogin.htm" }
	}
