jQuery(function ($) {
	$('#confirm-dialog a.confirm').click(function (e) {
		e.preventDefault();
		confirm("¿Desea confirmar el proyecto?", function () {
			window.location.href = 'clientes.php?confid="alpha"';
		});
	});
});

function confirm(message, callback) {
	$('#confirm').modal({
		position: ["20%",],
		overlayId: 'confirm-overlay',
		containerId: 'confirm-container', 
		onShow: function (dialog) {
			var modal = this;
			$('.message', dialog.data[0]).append(message);
			$('.yes', dialog.data[0]).click(function () {
				if ($.isFunction(callback)) {
					callback.apply();
				}
				modal.close();
			});
		}
	});
}
