function agregarcentro(id){

	var url = "http://www.ofisecre.com/acciones.php";
	var params = "?id=" + id + "&op=1";
	
	new Ajax.Request(url, {
		method: "POST",
		asyncrhonous: false,
		parameters: params,
		onComplete: function(resp){
			actualizar_espacios();
		}
	});
}


function eliminarcentro(id){

	var url = "http://www.ofisecre.com/acciones.php";
	var params = "?id=" + id + "&op=2";
	
	new Ajax.Request(url, {
		method: "POST",
		asyncrhonous: false,
		parameters: params,
		onComplete: function(resp){
			actualizar_espacios();
		}
	});
}

function actualizar_espacios(){
	var url = "http://www.ofisecre.com/espacios.php";
	new Ajax.Request(url, {
		method: "POST",
		parameters: "?ajax=1",
		asynchronous: false,
		onComplete: function(resp){
			$('bloque-espacios').update(resp.responseText);
		}
	});	
}


