if (!(navigator.appVersion <= "3.0" )) 
	{
	var boton_on = new Image();
	var boton_off = new Image();

	var background_1 = new Image();
	var background_2 = new Image();
	
	boton_on.src="/img/bola_roja.png";
	boton_off.src="/img/bola_azul.png";

	background_1.src="/img/fondo_botonera_negro.png";
	background_2.src="/img/fondo_botonera_off.png";

	function off(seccion) 
		{
		if (document.images) 
			{
			var nomimg = "I_" + seccion;
			document[nomimg].src = boton_off.src;
			}
		}

	function on(seccion)
		{
		if (document.images) 
			{
			var nomimg = "I_" + seccion;
			document[nomimg].src = boton_on.src;
			}
		}
	}


function seccionText(curSeccion, curEdicion, nextSeccion, nextNombre, pagina) {
	if (nextSeccion == curSeccion) {
		document.write('<img name="I_'+nextSeccion+'" src="/img/fr.png" width="7" height="7" class="fg" alt="'+nextNombre+'"/>');
		document.write('<span class="SeccionActiva">&nbsp;'+nextNombre+'</span>');
	}
	else {
		document.write('<img name="I_'+nextSeccion+'" src="/img/fb.png" width="7" height="7" class="fg" alt="'+nextNombre+'"/>');
		document.write('<a href="'+pagina+'?'+curEdicion+'+'+nextSeccion+'+0">');
		document.write('&nbsp;'+nextNombre+'</a>');
	}
}
//-->
