// JavaScript Document

function sobre(a,b,c,d,e){
	document.getElementById(a).className = d;
	document.getElementById(b).className = "menuOn";
	document.getElementById(c).className = e;
	//window.status = "";
}
function fuera(a,b,c,d,e){
	document.getElementById(a).className = d;
	document.getElementById(b).className = "menuOff";
	document.getElementById(c).className = e;
}
function pulsa(a){
	if (nivel!=1){
		if (a==1)location.href = "./presentacion";//+ organizacion
		if (a==2)location.href = "./empresas";//<---son los asociados
		if (a==3)location.href = "./solicitud";
		if (a==4)location.href = "./sugerencias";
		if (a==5)location.href = "./noticias_publicaciones";//
		if (a==6)location.href = "./enlaces";
		if (a==7)location.href = "./contacto";
		if (a==8)location.href = "./aenor";
		if (a==9)location.href = "./privado?acceso=0";
	}else{
		if (a==1)location.href = "../presentacion";//+ organizacion
		if (a==2)location.href = "../empresas";//<---son los asociados
		if (a==3)location.href = "../solicitud";
		if (a==4)location.href = "../sugerencias";
		if (a==5)location.href = "../noticias_publicaciones";//
		if (a==6)location.href = "../enlaces";
		if (a==7)location.href = "../contacto";
		if (a==8)location.href = "../aenor";
		if (a==9)location.href = "../privado?acceso=0";
	}
if (nivel==4){//Seccion empresas
		if (a==1)location.href = "../../presentacion";//+ organizacion
		if (a==2)location.href = "../../empresas";//<---son los asociados
		if (a==3)location.href = "../../solicitud";
		if (a==4)location.href = "../../sugerencias";
		if (a==5)location.href = "../../noticias_publicaciones";//
		if (a==6)location.href = "../../enlaces";
		if (a==7)location.href = "../../contacto";
		if (a==8)location.href = "../../aenor";
		if (a==9)location.href = "../../privado?acceso=0";
	}
}

	

	

