function creaAjax(){
	var objetoAjax;
	if(window.XMLHttpRequest){
		objetoAjax = new XMLHttpRequest(); // Creacion del objeto en buenos navegadores
	}else{
		try{
			objetoAjax = new ActiveXObject("Microsoft.XMLHTTP"); // Creacion del objeto en Internet Explorer
		}catch(e){
			alert('Browser does not support ajax'); // No se puede crear el objeto ajax
		}
	}return objetoAjax;
}

function cambio(nuevoHash){
	window.location.hash=nuevoHash;
	$.history.load(nuevoHash);
	cargaFicha();
}
function cargaFicha(){
	pag=window.location.href.replace(/^.*#/, '');
	vars_temp=pag.split("?");

	vars=vars_temp[1];
	pag=vars_temp[0];
	
	dest=pag+".php";
	if(vars) dest+="?"+vars;
	
	$.ajax({
	   type: "POST",
	   url: dest,
	   data: "",
	   success: function(msg){
		  $("#contFicha").html(msg);
	   }
 	});
}
