

function muestraSubMenu(seccion){
	clase = document.getElementById(seccion).className;
	if(clase == "noMostrar"){
		document.getElementById(seccion).className="sub_seccion";
		aux = seccion.split('sub_');
		id_linea = "linea_gris_"+aux[1];
		document.getElementById(id_linea).className = "linea_gris_menu";				
	}
	else
		document.getElementById(seccion).className="noMostrar";
	return false;
}


function marcarSeccion(seccion,subSeccion){

	if(seccion!=""){
		ident = "sec_"+seccion;
		document.getElementById(ident).id = "seccion_actual";
		

		id_linea = "linea_"+seccion;		
		document.getElementById(id_linea).className = "linea_negra";		
		
		id_opcion = "opcion_"+seccion;		
		document.getElementById(id_opcion).className = "espacio_opcion_sel";
		

		if(seccion!="inicio"){
			id_linea = "linea_gris_"+seccion;
			document.getElementById(id_linea).className = "linea_gris_menu";				
		}
		

		if(subSeccion != ""){
			id_linea = "sub_"+seccion;		
			document.getElementById(id_linea).className = "";		
			
			document.getElementById(subSeccion).id = "sub_seccion_actual";

		}
	}
}


function subrayaTitulo(ident){
	document.getElementById(ident).className = "titulo texto_rojo texto_subrayado";
}


function deSubrayaTitulo(ident){
	document.getElementById(ident).className = "titulo texto_rojo";
}

function subrayaTituloModelos(ident){
	document.getElementById(ident).className = "titulo texto_rojo texto_subrayado";
	nomId = "det_"+ident;
	document.getElementById(nomId).className = "enlace_rojo tipo_narrow";	
}


function deSubrayaTituloModelos(ident){
	document.getElementById(ident).className = "titulo texto_rojo";
	nomId = "det_"+ident;
	document.getElementById(nomId).className = "enlace_narrow";		
}


function abrirPopFilosofia(id){
	window.open("pop_filosofia.php?id="+id,"Filosofía","width=620,height=662,scrollbars=yes,resize=yes, top=0, left=0");
}


function subrayaTituloPub(ident){
	document.getElementById(ident).className = "texto_gris_claro texto_subrayado";
}


function deSubrayaTituloPub(ident){
	document.getElementById(ident).className = "texto_gris_claro";
}


function abrirPopNovedades(id){
	window.open("pop_novedades.php?id="+id,"Novedades","width=620,height=662,scrollbars=yes,resize=yes, top=0, left=0");
}

function abrirPopHistoria(id){
	window.open("pop_historia.php?id="+id,"Historia","width=620,height=662,scrollbars=yes,resize=yes, top=0, left=0");
}


function subrayarNovedades(ident){
	document.getElementById(ident).className='texto_negro_subrayado enlace_titulo tipo_narrow'
}

function deSubrayarNovedades(ident){
	document.getElementById(ident).className='texto_negro enlace_titulo tipo_narrow'
}


function subrayarNovedadesNorm(ident){
	document.getElementById(ident).className='texto_gris_oscuro_subrayado enlace_titulo';
}


function deSubrayarNovedadesNorm(ident){
	document.getElementById(ident).className='texto_gris_oscuro enlace_titulo'
}


function colorEnlaceColeccion(ident){
		document.getElementById(ident).className = "enlace_rojo tipo_narrow";		
}


function deColorEnlaceColeccion(ident){
		document.getElementById(ident).className = "enlace_narrow texto_negro_osc";		
}