// JavaScript Document
////////////////////////////////////////////
///  CREAR EN FLY UN EXCEL DE TODOS LOS ENGANCHES
///////////////////////////////////////////
function download_excel()
{
	ajaxExcel = Ajax();
	variables = "engacche=nada";
	ajaxExcel.open("POST", "modulos/plantillas/enganches/excel/descargar_excel.php?", true);
	ajaxExcel.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
    ajaxExcel.send("&"+variables);
	ajaxExcel.onreadystatechange = stateChangedExcel;
}

function stateChangedExcel()
{
	if ( (ajaxExcel.readyState==4) && (ajaxExcel.status == 200) )
	{	
	    var fichero_excel=ajaxExcel.responseText;
 		location.href = "descargar.php?file="+fichero_excel+"&ruta=upload/enganches/excel";
	}
}