$(document).ready(function(){
	
	$("#reg_form").dialog({
		autoOpen: false,
		height: 480,
		width: 500,
		modal: true,
		buttons: {
			'Cadastrar Usuário': function(){
				$(this).children('form').submit();
			},
			'Cancelar': function(){
				$(this).dialog('close');
			}
		}
	});
	
	$("#comment_delete").dialog({
		autoOpen: false,
		height: 200,
		width: 300,
		modal: true,
		buttons: {
			'Sim': function(){
				$.post("_ajax/deleteComment.php", { id: commentID[1] },showResponse);
			},
			'Não': function(){
				$(this).dialog('close');
			}
		}
	});
	
	
	
	$("#resetPWD_form").dialog({
		autoOpen: false,
		height: 200,
		width: 350,
		modal: true,
		buttons: {
			'Recuperar Senha': function(){
				$(this).children('form').submit();
			},
			'Cancelar': function(){
				$(this).dialog('close');
			}
		}
	});

	$("#popUp").dialog({
		autoOpen: false,
		modal: true
	});
	
});

function openPopUp(title,msg){
	$("#popUp").dialog('option', 'title', title);
	$("#popUp #msg").html(msg);
	$("#popUp").dialog('open');
	
	setTimeout( closePopUp, 2000);
}
function closePopUp(){
	$('#popUp').dialog('close')
}
