function enviarContenido(id, texto, url, contenedor){
	url=url+id;
	window.status = "Please wait...";
	if(texto!=""){document.title = "Infobiker - " + texto;}
	$(contenedor).update('Cargando ... un momento por favor');
	new Ajax.Updater(contenedor, url,{method: 'get',parameters:{ }, evalScripts: true, onSuccess: function(transport) { }, onFailure:function(transport) { alert ('Error al generar la consulta');}});
}
function mouseDefault(valor){
	document.body.style.cursor = valor;
}