function confirmDelete(question,url) {
	var answer = confirm(question);
	if (answer){
		window.location = url;
	}
}
