// JavaScript Document

function nuevoAjax(){
	var xmlhttp=false;
	try{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}catch(e){
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}catch(E){
			xmlhttp = false;
		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	
	return xmlhttp;
}



function sectuali(edicion, seccion, mes, dia){
//	alert("op=1&edicion="+edicion+"&seccion="+seccion+"&mes="+mes+"&dia="+dia);
	ajax=nuevoAjax();
//	alert(articulo);
	ajax.open("POST", "funcs/funax.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			if(ajax.responseText){
		            /*document.getElementById('flota').style.display="block";
		            resul.innerHTML=ajax.responseText;*/
		        }
		}
	} 
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("op=1&edicion="+edicion+"&seccion="+seccion+"&mes="+mes+"&dia="+dia);/*	
	
//	alert("op=1&edicion="+edicion+"&seccion="+seccion+"&mes="+mes+"&dia="+dia);
	
	ajax=nuevoAjax();
	ajax.open("POST", "funcs/funax.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			if(ajax.responseText){
			
		}
	} 
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("op=1&edicion="+edicion+"&seccion="+seccion+"&mes="+mes+"&dia="+dia);*/
}
