<!-- Esconde el codigo para navegadores anteriores a Netscape 3 y Explorer 4
function EntroEnTexto(Texto)
	{
    Texto.style.fontStyle="italic";
    Texto.style.textDecoration="underline";
	return;
	}
function SalioDeTexto(Texto)
	{
    Texto.style.fontStyle="normal";
    Texto.style.textDecoration="none";
	return;
	}

function CambiarImagenBotonArticulo(Imagen)
	{
    Imagen.src="../Elementos5/BotonArticuloP.gif";
	return;
	}
function RestaurarImagenBotonArticulo(Imagen)
	{
    Imagen.src="../Elementos5/BotonArticulo.gif";
	return;
	}
//-->