// JavaScript Document


var password="ulss0wn"; 

		

// DAVIS! YOU DON'T NEED TO EDIT ANYTHING BELOW THIS LINE! ==========================================
//Make sure there is a password to validate against  
var bypass = false;  
if (!window.password) { 
bypass = true; 
}     
// prompts the user this...      
if (bypass == false) { 	
var name = prompt("Please enter password -","");     

// if... else statement... right, confirm this, wrong, go to wrong...     
	if (name != password) { 
		alert("Incorrect Password"); 
		location.href=history.back(); 
		}    
	}   // END Script -->
