function checkPassword(){
	enteredPassword = document.getElementById('loginPassword').value;
	if (enteredPassword == "Report2008"){
		alert('Document no longer available.  Click OK for more information.');
		window.location="http://www.blazefireinvestigation.com/error2.html";;
	
	}else if (enteredPassword == "Bob2009"){
		alert('Document ID Accepted - Click OK to continue');
		window.location="http://www.blazefireinvestigation.com/PDF/bob.php";;
		
	}else if (enteredPassword == "Mark2009"){
		alert('Document ID Accepted - Click OK to continue');
		window.location="http://www.blazefireinvestigation.com/PDF/mark.php";;
	
	}else if (enteredPassword == "Dennis2009"){
		alert('Document ID Accepted - Click OK to continue');
		window.location="http://www.blazefireinvestigation.com/PDF/dennis.php";;
		
	}else if (enteredPassword == "Client001"){
		alert('Document ID Accepted - Click OK to continue');
		window.location="http://www.blazefireinvestigation.com/PDF/blazeBrochure.pdf";;
		
	}else if (enteredPassword == "dan"){
		alert('Document ID Accepted - Click OK to continue');
		window.location="http://www.blazefireinvestigation.com/PDF/08.wav";;
		
	}else{
		alert('Sorry, your password is incorrect.  Click OK for more information.');
		window.location="http://www.blazefireinvestigation.com/error2.html";;
	
	
}}

