function special_home_news_list(id_special, pagina)
{
	if (!document.sending) {
		document.sending = true;
		$('#div_special_news_list').html(MSG_LOADING);
		$.ajax({
			type: "POST",
			url: WEB_PATH + "app/ajax/special_home_news_list.php",
			data: { id_special: id_special, p: pagina },
			success: function(response) {
				document.sending = false;
				$('#div_special_news_list').html(response);
			},
			error: function(obj, what_happen, other_obj) {
				document.sending = false;
			}
		});
	}
}

function special_video_hide()
{
	$('#container_gallery_popup').dialog('close');
	$('#container_gallery_popup').dialog('destroy');
}

function open_video(URL_VIDEO){

	$.ajax({
		type: "POST",
		url: WEB_PATH + "app/ajax/special_video.php",
		data: { URL: URL_VIDEO},
		success: function(response) {
			$('#container_gallery_popup').html(response);
			$('#container_gallery_popup').dialog({
				modal: true
			});
		}
	});
}
