<!-- Deteccion del navegador -->
var nc = (document.layers) ? true:false;
var ie = (document.all) ? true:false;
var n6 = (document.getElementById) && !document.all ? true:false;

function abrirventana(ruta,nombre,opciones,ancho,alto,v)
{
	window.open(ruta,nombre,opciones,ancho,alto,v);
	
}
				 
<!-- Código para mostrar el reloj -->
function muestra_reloj()
{ 
	momentoActual = new Date();
	hora = momentoActual.getHours();
	minuto = momentoActual.getMinutes();
	segundo = momentoActual.getSeconds(); 
	if (hora < 10)
		hora = "0" + hora;
	if (minuto < 10)
		minuto = "0" + minuto;
	if (segundo < 10)
		segundo = "0" + segundo;
	horaImprimible = hora + ":" + minuto + ":" + segundo + "&nbsp;";
	document.getElementById('reloj').innerHTML = horaImprimible;
	setTimeout("muestra_reloj()",1000);
}

<!-- Código para mostrar la fecha -->
function muestra_fecha()
{
	var mydate=new Date();
	var year=mydate.getYear();
	if (year < 1000)
	year+=1900;
	var day=mydate.getDay();
	var month=mydate.getMonth();
	var daym=mydate.getDate();
	if (daym<10)
	daym="0"+daym;
	var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sábado");
	var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	fechaImprimible = dayarray[day] + " " + daym + " de " + montharray[month] + " de " + year;
	document.getElementById('fecha_actual').innerHTML = fechaImprimible;
}

function muestra_fecha_en()
{
	var mydate=new Date();
	var year=mydate.getYear();
	if (year < 1000)
	year+=1900;
	var day=mydate.getDay();
	var month=mydate.getMonth();
	var daym=mydate.getDate();
	if (daym<10)
	daym="0"+daym;
	var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	fechaImprimible = dayarray[day] + ", " + daym + "." + montharray[month] + "." + year;
	document.getElementById('fecha_actual').innerHTML = fechaImprimible;
}

function barra_navegacion()
{
	direccion = location.href.substring(0,location.href.indexOf('?', 0));
	document.getElementById('navegacion_derecha').innerHTML="<ul><!-- <li><a id='es' href='" + direccion + "?idioma_seleccionado=es' title='Traducir al Español'></a></li><li><a id='en' href='" + direccion + "?idioma_seleccionado=en' title='Traducir al Inglés'></a></li>--><li><a id='byn' href='" + direccion + "?estilo=stylebn' title='Visualización alto-contraste'></a></li><li><a id='color' href='" + direccion + "?estilo=style' title='Visualización color'></a></li><li><a id='accesibilidad' href='/fomento/accesibilidad/accesibilidad.php' title='Accesibilidad'></a></li><li><a id='disminuir' href='#' onclick='disminuye_etiqueta();' title='Disminuir tamaño de texto'></a></li><li><a id='aumentar' href='#' onclick='aumenta_etiqueta();' title='Aumentar tamaño de texto'></a></li><li><a id='home' href='/fomento/index.php' alt='Ir a página de inicio' title='Ir a página de inicio'></a></li><li><a id='inicio' href='#' onclick='this.style.behavior=\"url(#default#homepage)\"; this.setHomePage(\"http://www.ifef.es\");' title='Poner como página de inicio'></a></li><li><a id='favoritos' href='javascript:window.external.AddFavorite(\"http://www.ifef.es/fomento\");' title='Agregar a favoritos'></a></li><li><a id='email' href='mailto:instituto.fomento@ifef.es' title='instituto.fomento@ifef.es'></a></li><li><a id='mapa' href='/fomento/mapaweb/mapaweb.php' title='Mapa del sitio'></a></li></ul>";
}

function barra_navegacion_en()
{
	direccion = location.href.substring(0,location.href.indexOf('?', 0));
	document.getElementById('navegacion_derecha').innerHTML="<ul><li><a id='es' href='" + direccion + "?idioma_seleccionado=es' title='Translate to Spanish'></a></li><li><a id='en' href='" + direccion + "?idioma_seleccionado=en' title='Translate to English'></a></li><li><a id='byn' href='" + direccion + "?estilo=stylebn' title='High-contrast mode'></a></li><li><a id='color' href='" + direccion + "?estilo=style' title='Color mode'></a></li><li><a id='accesibilidad' href='/fomento/accesibilidad/accesibilidad.php' title='Accesibility'></a></li><li><a id='disminuir' href='#' onclick='disminuye_etiqueta();' title='Dicrease text size'></a></li><li><a id='aumentar' href='#' onclick='aumenta_etiqueta();' title='Increase text size'></a></li><li><a id='home' href='/fomento/index.php' alt='Home'></a></li><li><a id='inicio' href='#' onclick='this.style.behavior=\"url(#default#homepage)\"; this.setHomePage(\"http://www.ifef.es\");' title='Set as homepage'></a></li><li><a id='favoritos' href='javascript:window.external.AddFavorite(\"http://www.ifef.es,Instituto de Fomento, Empleo y Formación de Cádiz\");' title='Add to Favorites'></a></li><li><a id='email' href='mailto:instituto.fomento@ifef.es' title='instituto.fomento@ifef.es'></a></li><li><a id='mapa' href='/fomento/mapaweb/mapaweb.php' title='Site map'></a></li></ul>";
}

function aumenta_etiqueta()
{
	i = 0;
	if (ie)
	{
		num_objetos = document.all.length;
		for (i = 0; i < num_objetos - 1; i++)
		{
			if (document.all[i].tagName == 'P' || document.all[i].tagName == 'A' || document.all[i].tagName == 'UL' || document.all[i].tagName == 'H1' || document.all[i].tagName == 'H2' || document.all[i].tagName == 'H3' || document.all[i].tagName == 'SPAN')
			{
				objeto = document.all[i];
			
				
				tamano = objeto.currentStyle.fontSize;
				tamano = tamano.substring(0, tamano.length - 2);
				tamano = parseFloat(tamano) + 0.2;
				
				if(tamano <= 1.4)
					objeto.style.fontSize = tamano + "em";
							
			}
		}
	}
	else
	{
		var enlaces = document.getElementsByTagName("A");
		for (var i = 0; i < enlaces.length; i++) 
		{
			alert(enlaces[i].style.getAttribute('fontSize'));
			tamano = enlaces[i].style.getPropertyCSSValue('fontSize');
			tamano = tamano.substring(0, tamano.length - 2);
			tamano = parseFloat(tamano) + 0.2;

			if(tamano <= 1.4)
					enlaces[i].style.fontSize = tamano + "em";
			alert(enlaces[i].style.getPropertyCSSValue('fontSize'));
		}
	}
}

function disminuye_etiqueta()
{
	i = 0;
	num_objetos = document.all.length;
	for (i = 0; i < num_objetos - 1; i++)
	{
		if (document.all[i].tagName == 'P' || document.all[i].tagName == 'p' || document.all[i].tagName == 'A' || document.all[i].tagName == 'a' || document.all[i].tagName == 'UL' || document.all[i].tagName == 'ul' || document.all[i].tagName == 'H1' || document.all[i].tagName == 'H2' || document.all[i].tagName == 'H3' || document.all[i].tagName == 'SPAN' || document.all[i].tagName == 'span')
		{
			objeto = document.all[i];
			tamano = objeto.currentStyle.fontSize;
			tamano = tamano.substring(0, tamano.length - 2);
			tamano = parseFloat(tamano) - 0.2;
			if(tamano >= 0.5)
				objeto.style.fontSize = tamano + "em";
		}
	}
}

// Para el cambio del tamaño de letra (otra función adicional)
function tamFuente (nivel, elem) 
{
	var elemento = document.getElementById(elem)
	elemento.className = "nivel_"+nivel;
}



