/* Menú seleccionado */
function cambiaClase( quien ) {
	for (i=1; i<=7; i++) {
		document.getElementById("m"+i).className = '';
	}
	quien.className = 'sel';
	return true;
}

/* Aviso legal */
function popp( idioma ) {
	window.open( 'aviso.html', 'miVentana', 'width=940, height=540' );
}