
<!--Hide
function enter(){
	var pass = prompt("Please enter a valid password:", "")
	if (pass == "wetlands"){
		newWindow();
	}
	else{
		//window.location.reload()
	}
}
function showStatus(msg){
	window.status = msg
	return true
}
function newWindow(){
	mapWindow = window.open('http://www.pmcl.com/cepa/mapinterface.html','mapWin','status=yes,toolbar=no,location=no,scrollbars=no,width=790,height=530,top=5,left=5')
}

function enterReport(){
	var pass = prompt("Please enter a valid password:", "")
	if (pass == "wetlands"){
		var location = "reportbldr.asp";
		window.location.href = location;
	}
	else{
		//window.location.reload()
	}
}

//--End Hide-->