function show_dialog(title, link, width, height)
{
	$("#dialog").attr("title",title);
	$('#dialog').html("Загрузка...");
	$.get(link, function(data){$('#dialog').html(data);});
	$("#dialog").dialog({modal: true, resizable: false, draggable: false, width: width, height: height});
}
