if(!anterior){
	var anterior = 0;
}
var anterior_lloc = 0;
var anterior_flash = 1;
function desplega(id) {
	estil = document.getElementById('box'+id).style.display;
	if (estil != "block") {
		document.getElementById('box'+id).style.display = 'block';
	} else {
		document.getElementById('box'+id).style.display = 'none';
	}
	if(anterior != 0 && anterior != id){
		document.getElementById('box'+anterior).style.display = 'none';
	}
	anterior = id;
}

function desplega2(id) {
	estil = document.getElementById('mapa'+id).style.display;
	if (estil != "block") {
		document.getElementById('mapa'+id).style.display = 'block';
		document.getElementById('lloc'+id).style.font = 'normal bold 1em tahoma, arial, sans-serif';
	} else {
		document.getElementById('mapa'+id).style.display = 'none';
		document.getElementById('lloc'+id).style.font = 'normal normal 1em tahoma, arial, sans-serif';
	}
	if(anterior_lloc != 0 && anterior_lloc != id){
		document.getElementById('mapa'+anterior_lloc).style.display = 'none';
		document.getElementById('lloc'+anterior_lloc).style.font = 'normal normal 1em tahoma, arial, sans-serif';
	}
	anterior_lloc = id;
}

function desplega_flash(id){
	estil = document.getElementById('flash'+id).style.display;
	if (estil != "block") {
		document.getElementById('flash'+id).style.display = 'block';
	} else {
		document.getElementById('flash'+id).style.display = 'none';
	}
	if(anterior_flash != 0 && anterior_flash != id){
		document.getElementById('flash'+anterior_flash).style.display = 'none';
	}
	anterior_flash = id;
}

function pop_cuadro() {
	f_cuadro = window.open('/servicios_inversion/index.php?fuseaction=resumen', 'f_cuadro', 'width=950,height=500,scrollbars=yes,top='+((screen.height-500)/2)+',left='+((screen.width-950)/2));
	f_cuadro.focus();
}

function pop_video() {
	f_cuadro = window.open('/informacion_corporativa/index.php?fuseaction=video', 'f_cuadro', 'width=296,height=224,scrollbars=0,top='+((screen.height-224)/2)+',left='+((screen.width-296)/2));
	f_cuadro.focus();
}

function pop_premis(enllac) {
	f_premis = window.open(enllac, 'f_premis', 'width=550,height=550,scrollbars=yes,top='+((screen.height-550)/2)+',left='+((screen.width-550)/2));
	f_premis.focus();
}

function pop_noticia(idioma, archivo) {
	if(archivo != ''){
		var enllac;
		enllac = '/actualidad/archivos/'+idioma+'/'+archivo;
		f_noticia = window.open(enllac, 'f_noticia', 'width=750,height=550,scrollbars=yes,top='+((screen.height-580)/2)+',left='+((screen.width-750)/2));
		f_noticia.focus();
	}else{
		alert('La notícia seleccionada no está disponible.');
	}
}
