$(document).ready(function(){
	$('#dialog').hide();
});

function DialogExc(url,id,titulo,mensagem){
	idUrl = '';
	if(id != 'S'){
		t = (url.indexOf("?") != -1) ? '&' : '?';
		idUrl = t + 'id=' + id;
	}
	if(id == 0 && id != 'S'){
		id = '';
		$('.dialogItem').each(function(){
			if($(this).is(':checked')){
				id += $(this).val()+',';
			}
		});
		idUrl = t + 'id=' + id.substring(id.length-1,-1);
	}
	$('#dialogMensagem').html(mensagem);
	$("#dialog").attr({title: titulo});
	$("#dialog").show();
	$("#dialog").dialog({
		bgiframe: false,
		resizable: false,
		width:400,
		height:200,
		modal: true,
		overlay: {
			backgroundColor: '#000',
			opacity: 0.3
		},
		buttons: {
			'Confirmar': function() {
				$(this).dialog('close');
				if(url){
					window.location = url + idUrl;
				}
			},
			'Cancelar': function() {
				$(this).dialog('destroy');
			}
		}
	});
}
