// Issues dropdown in header

function goTo(to_url) {
	if (to_url != "") {
		window.location = "http://www.civilrights.org/issues/" + to_url;
	}
}



// Password protection for Out of the Box registration

function TheLogin() {

var password = 'future';

if (this.document.login.pass.value == password) {
  top.location.href="http://www.civilrights.org/about/outside/register.html";
}
else {
  location.href="http://www.civilrights.org/about/outside/incorrect.html";
  }
}