/*
	Autor: García Rivera Juan Carlos
	Agradecimientos: mysqlya.com.ar
*/

//FUNCION AJAX-----------------------------------------------------------------------------------------------------
	function ajax(direccion,arreglo,ejecutarvalor,ejecutarmientras){
		var conexion1=window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
		conexion1.onreadystatechange = function(){
													if(conexion1.readyState == 4){
														var ajax=conexion1.responseText;
														eval(ejecutarvalor);
													}else{
														eval(ejecutarmientras);
													}
												}
		conexion1.open('POST',direccion+".php", true);
		conexion1.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		conexion1.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
		var crg=''; for (key in arreglo) crg += key+"="+arreglo[key]+"&";
		conexion1.send(crg);
	}

/*
	Ejemplo:
		ajax("ajax",{'opcion1':13},'document.title=ajax;','document.title=" Cargando... ";');
		
*/	
