////JavaScriptfunction level2ajax(bar,div,redirectapp,nivel) {	new Ajax.Updater(div, redirectapp+'/ajax/niveldos.html?id='+nivel,{	asynchronous:true,	evalScripts:true,	onComplete:function(request){Element.hide(bar)},	onLoading:function(request){Element.show(bar)},	method:'get'});}function cargaContenidos(div,redirectapp,nivel) {		new Effect.Fade('contenedorDesarrollos',{duration:.3});	window.setTimeout('cargadorContenidoAjax(\''+div+'\',\''+redirectapp+'\',\''+nivel+'\')',500);	}function cargadorContenidoAjax(div,redirectapp,nivel) {	new Ajax.Updater(div, redirectapp+'/ajax/contenidos.html?id='+nivel,{	asynchronous:true,	evalScripts:true,	onComplete:function(request){Element.hide(div); new Effect.Appear(div);},	method:'get'});}function cargaDesarrollos(div,redirectapp,nivel) {		new Effect.Fade('contenedorDespliegue',{duration:.3});	window.setTimeout('cargadorDesarrolloAjax(\''+div+'\',\''+redirectapp+'\',\''+nivel+'\')',500);	}function cargadorDesarrolloAjax(div,redirectapp,nivel) {	new Ajax.Updater(div, redirectapp+'/ajax/desarrollos.html?id='+nivel,{	asynchronous:true,	evalScripts:true,	onComplete:function(request){Element.hide(div); new Effect.Appear(div);},	method:'get'});}