// FORM SUBMIT // -----------------------------------------------------
function submitForm(divForm, divSuccess, formID, captchaID)
{
	jQuery('#' + divForm + ' .sendLoading').css('display','block');
	
	jQuery.post(template_directory + '/formProcess.php', jQuery("#" + formID).serialize(), 	
	function(data) {		
		if (data.response == 'captcha_error') {
			jQuery('#' + captchaID).validationEngine('showPrompt', 'El código de seguridad es inválido', 'error');
		} else if (data.response == 'form_ok') {
			jQuery('#' + divForm).css('display','none');
			jQuery('#' + divSuccess).css('display','block');
		}
		
		jQuery('#' + divForm + ' .sendLoading').css('display','none');
	}, 'json');
}
// --------------------------------------------------------------------

// CINE EN TV // ------------------------------------------------------
function getCineEnTv(day, month, year) 
{
	jQuery.post(template_directory + '/cine-en-tv.php', { day: day, month: month, year: year }, 	
	function(data) {			
		jQuery('#cineEnTv').html(data);
	}, 'html');
}
// --------------------------------------------------------------------
