﻿// Archivo JScript

//josé lagos 639 331 164


function resaltar(valor){
	//Seleccionamos la pestaña del menu que le pasamos en la función y agrandamos su altura
	document.getElementById(valor).style.height="30px";
	//A la imagen con el mismo id le ponemos un borde inferior blanco.
	document.getElementById('img' + valor).style.borderBottom="2px solid #FFFFFF";
}

function noresaltar(valor){
	document.getElementById(valor).style.height="25px";
	document.getElementById('img' + valor).style.borderBottom="0px";
}

function fcPestanaActual(valor,color){
	//Seleccionamos la pestaña del menu que le pasamos en la función y agrandamos su altura
	document.getElementById(valor).style.height="30px";
	//A la imagen con el mismo id le ponemos un borde inferior blanco.
	//document.getElementById('img' + valor).style.borderBottom="2px solid #FFFFFF";
	document.getElementById("header").style.backgroundColor= color;
}



function fcInsertComentario(){
    if(document.getElementById('insertComentario').style.display="none")
        document.getElementById('insertComentario').style.display="block";
    else
        document.getElementById('insertComentario').style.display="none";
}