// This script will be automatically included by the header.php file
// and therefore any scripts here will be available to all pages.

function confirmCancel() {
	if (confirm('Are you sure you want to cancel?')) {
		window.history.go(-1);
	}
}