
$(function() {
	
	$(".delete-button").click(function() {
		return confirm("Are you sure?");
	})
	
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	
})


