/**
 * @author kchanto
 */
$(document).ready(function() {
	$("#dialog").dialog({
		bgiframe: true, 
		modal: true, 
		autoOpen: false, 
		closeOnEscape: false, 
		show: 'blind', 
		hide: 'blind',
		speed: 'slow'
	});
	
	$("form").submit(function(){
		$(".ui-dialog-titlebar-close").hide();
		$("#dialog").dialog("open");
	})	
})
