function confirmDelete(target_url, name){

	if (confirm (name)){

		location = target_url;

	} else {

		location = "#";

	}

}