// JavaScript Document

function confirmDelete(){
	var answer = confirm("Are you sure you want to delete this data?");
	if (answer){
		window.location.href = $(this).attr(href);
	}
	else
		return false;
}
