function confirmation(id, text, url) {
	if (window.confirm(text)) {
		window.location.href = url;
	}
} 

