function confirm_delete(id) {
	var answer = confirm("Really delete this Posting? This cannot be undone.");
	if (answer){
		window.location = "delete/" + id;
	}	else {
		return false;
	}
}

function confirm_delete_image(id) {
	var answer = confirm("Really delete this Image? This cannot be undone.");
	if (answer){
		window.location = "deleteImage/" + id;
	}	else {
		return false;
	}
}

$(function() {
	$("#startDate").datepicker();
});
$(function() {
	$("#endDate").datepicker();
});
$(function() {
	$("#dateposted").datepicker();
});






