function add2download(documentId, lang) {
	$.ajax({
		url: '/system/php/scripts/document983.php',
		data : 'document_id='+documentId,
		dataType : 'json',
		success: function(json) {
			if(json.result == "success") {
				if(lang == "eng") {
					alert("Document added to download centre.");
				} else {
					alert("Документ добавлен к списку файлов для скачивания.");
				}
			} else {
				if(lang == "eng") {
					alert("Error. Try again later");
				} else {
					alert("Произошла ошибка.");
				}
			}
		}
	});
}
