$(function() {
	$('#lang_select').dialog ({
		autoOpen: false,
		closeText: dlg_close,
		modal: true,
		resizable: false,
		title: dlg_select_lang,
		width: 355
	});
});

function show_dl_category (id) {
	$("#" + id).toggle ("slow");
}

function get_file (doc_id, type, lang) {
	if (type == "a")
		$('#lang_select').dialog ('option', 'title', dlg_authorize);
	else
		$('#lang_select').dialog ('option', 'title', dlg_select_lang);
	$('#lang_inner').html ("<p align=\"center\">" + dlg_wait + "</p>");
	$('#lang_select').dialog ('open');
	$('#lang_inner').load (base_url + site_lang + "/download/get_file", { "doc_id" :  doc_id, "type" : type, "lang" : lang });
}

function get_file_check() {
	$.post (
			base_url + site_lang + "/download/get_file", {
			"doc_id" : $('#doc_id').val(),
			"type" : $('#type').val(),
			"lang" : $('#lang').val(),
			"pl_name" : $('#pl_name').val(),
			"pl_pass" : $('#pl_pass').val(),
			"submit_pl" : 1
		},
		function (data) {
			if (data == "sorry")
				$('#lang_inner').html ("<p align=\"center\">" + dlg_no_access + "</p>");
			else
				document.location.href = data;
		}
	);
}

