function confirmDelete(url){
	var agree = confirm('Вы уверены что хотите удалить?');
	if (agree){
		document.location=url;
	}
}