function cambiar_idioma(idioma) {
  alert('Available soon')
  return

  re = /[\x5c\x2f][\w\.]+/g

  url = new String(document.URL)
  resultado = url.match(re)

  pagina = resultado[resultado.length-1]

  if (idioma == 'en') {
    location.href='en'+pagina
  }
  else {
    location.href='..'+pagina
  }
}