// cabecera.js
function escribeCabecera(_color,texto,anterior0,enlace0,anterior1,enlace1,anterior2,enlace2)
{
	var ancho = (isNaN(self.outerWidth)) ? document.body.offsetWidth : self.outerWidth;
	var ie6 = (navigator.appVersion.indexOf("MSIE 6.0") != -1);
	ancho -= 45; var resto = ancho - 70;
	if (ie6)
	{
		ancho = document.body.clientWidth;
		resto = ancho - 40;
	}
	var laclase;
	var _mas = '<img src="/graficos/mas.gif" width="5" height="10" hspace="2">';

	if (texto == "")
		texto = "Universidad de Le&oacute;n"; 

	switch (_color)
	{
		case 0: _color = "#646464";  laclase = "tb";   break;        //Gris medio indefinido
		case 1: _color = "#0076BC";  laclase = "tb"; break;          //azul biol&oacute;gicas
		case 2: _color = "#DA242E";  laclase = "tb";   break;        //rojo derecho
		case 3: _color = "#BEC0BB";  laclase = "tb";   break;        //gris enfermer&iacute;a
		case 4: _color = "#B6791F";  laclase = "tb";   break;        //marr&oacute;n ingenier&iacute;as
		case 5: _color = "#9BC3D7";  laclase = "tb";   break;        //cyan filosof&iacute;a
		case 6: _color = "#E36226";  laclase = "tb";   break;        //naranja econ&oacute;micas
		case 7: _color = "#ABD459";  laclase = "tb";   break;        //verde claro INCAFD
		case 8: _color = "#41AE35";  laclase = "tb";   break;        //verde intermedio ULE
		case 9: _color = "#009C64";  laclase = "tb";   break;        //verde oscuro Veterinaria
		default: _color = "#0076BC";  laclase = "tb";   break;       //azul por defecto
	}

document.writeln('<table width="' + ancho + '" cellpadding="0" cellspacing="0" border="0">');
document.writeln('<tr><td align="center" rowspan="4" width="68" nowrap height="74" valign="middle">');
document.writeln('<a href="http://www.unileon.es/indice.htm">');
document.writeln('<img src="/graficos/escudo55x104.gif" width="55" height="104" hspace="7" alt="Universidad de Le&oacute;n" border="0"></a>');
document.writeln('</td><td bgcolor="#009966" width="' + resto + '">');
document.writeln('<img src="/graficos/ule_texto_p.gif" height="23" hspace="5" vspace="2"> ');
document.writeln('</td></tr><tr><td height="2" bgcolor="#FFFFBB"><img src="/punto.gif" height="1"></td></tr>');
document.writeln('<tr align="right"><td bgcolor="' + _color + '">');
document.writeln('<span class="' + laclase + '"> ' + texto + ' </span>');
document.writeln('<img src="/punto.gif" width="5" height="36" align="absmiddle">');
document.writeln('</td></tr><tr><td class="camino"><A HREF="/indice.htm" class="enlace">');
document.write('<img src="/graficos/casa.gif" width="14" height="14" alt="P&aacute;gina principal"');
document.writeln(' hspace="3" border="0" align="baseline"> Principal </A>' + _mas);
if (anterior0 != "") document.writeln('<a href="' + enlace0 + '" class="enlace"> ' + anterior0 + ' </a>' + _mas);
if (anterior1 != "") document.writeln('<a href="' + enlace1 + '" class="enlace"> ' + anterior1 + ' </a>' + _mas);
if (anterior2 != "") document.writeln('<a href="' + enlace2 + '" class="enlace"> ' + anterior2 + ' </a>' + _mas);
document.writeln(texto);
document.writeln('</td></tr></table>');
document.writeln('<blockquote>');
}

