
function addFoto(foto) 
{
	$.ajax({
		url: "/includes/compruebaFichero.php",
		async:true,
		type: "POST",
		data: "fichero="+foto,
		success: function(data){
			$('#imagenes_album').val($('#imagenes_album').val() + data + ",");
		},
		error: function(objeto, quepaso, otroobj){
			alert("Falla");
			alert("Por: "+quepaso);				
			alert("Carpeta: "+carpeta+" - Post: "+post+" - Imagen: "+imagen);
		}
	});	
}


/**************************************/
/****** FLASH SUBIDA MULTIPLE ********/
// <![CDATA[
	var params = {
		quality:'high',
		menu: 'false',
		scale: 'noscale',
		align: 'middle',
		allowScriptAccess: 'always',
		allowfullscreen: 'true',
		wmode: 'transparent'
	};
	
	var flashvars = {
		path: '/'
	};
	
	var attributes = {
		id: 'examinar',
		name: 'examinar'
	};

	swfobject.embedSWF("/multiple_upload.swf", "examinar", "280", "30", "8.0.0", "#000000", flashvars, params, attributes);
// ]]>

