function banner_update_clicks(id_banner)
{
	
	$.ajax({
		type: "POST",
		url: WEB_PATH + "app/ajax/banner_update_clicks.php",
		data: { id_banner: id_banner },
		success: function(response) {
			
		},
		error: function(obj, what_happen, other_obj) {
		}
	});
}
function cuenta_cabezado()
{
	$.ajax({
		type: "POST",
		url: WEB_PATH + "app/ajax/banner_publicidad_update_clicks.php",
		data: { id_banner: 'cabezal' },
		success: function(response) {
			console.log( response );
			
		}
	});
}
function cuenta_lateral()
{

	

	$.ajax({
		type: "POST",
		url: WEB_PATH + "app/ajax/banner_publicidad_update_clicks.php",
		data: { id_banner: 'lateral' },
		success: function(response) {
			console.log( response );
		}
	});
}
