function SetDato(dato, session){
	var aleatorio=Math.random();
	var SetDatosAjax = nuevoAjax();
	SetDatosAjax.open("GET", "ajax/setdatos.php?dato="+dato+"&session="+session+"&nocache="+aleatorio, true);
	SetDatosAjax.onreadystatechange = function(){
		if (SetDatosAjax.readyState==1){
		}else if (SetDatosAjax.readyState==4){
		}
	}
	SetDatosAjax.send(null);
}



function SetDatoArray(dato, session){
	var SetDatoArrayAjax = nuevoAjax();
	SetDatoArrayAjax.open("GET", "ajax/setdatos.php?dato="+dato+"&session="+session+"&acc=array", true);
	SetDatoArrayAjax.onreadystatechange = function(){
		if (SetDatoArrayAjax.readyState==1){
		}else if (SetDatoArrayAjax.readyState==4){
			//alert(SetDatoArrayAjax.responseText);
		}
	}
	SetDatoArrayAjax.send(null);
}
