function verifyAge(obj) {
	var answer = confirm("By clicking \"OK\", you confirm that you are 18 years or older")
	if (answer){
		window.location = "issues/"+obj+"/issue.html";
	}
	else{
		window.location = "issues/"+obj+"_obf/issue.html";
	}
}