<!--

$(document).ready(function(){
	
	$("#dialog_jsmod").dialog({
		autoOpen: false,
		resizable: false,
		width: 500,
		buttons: {
			"Bezár": function(){
				$(this).dialog("close");
			}
		}
	});
	$("#dialog_jsmod_open").click(function(event){
		event.preventDefault();
		$("#dialog_jsmod").dialog("open");
	});
	
});

//-->

