$(document).ready(function() {
	$('a.delete').click(function() {
		var confirmed = confirm('Are you sure you want to delete this record?');
		
		if (confirmed !== true) {
			return false;
		}
	});

    $('a.new-window').click(function() {
        window.open($(this).attr('href'));
        return false;
    });
});

