// Crear links para cada idioma
function crearLinkIdioma(idioma, idiomaCompleto) {
    var idiomaActual = document.getElementById("__Idioma").value;
    if (idiomaActual.length == 0) idiomaActual = "cat";
	if (idiomaActual != idioma) {
		document.write('<a href="#" onClick="javascript:CambiarIdioma(\'' + idioma + '\')" title="' + idiomaCompleto + '"><img src="img/idioma-' + idioma + '.gif" alt="' + idiomaCompleto + '" border="0" class="'+ idioma +'"/></a>');		
	} else {
		document.write('<img src="img/idioma-' + idioma + '-sel.gif" alt="' + idiomaCompleto + '" width="23" height="23" border="0" class="'+idioma+'"/>');		
	}
}

//Cambiamos el idioma de la web
CambiarIdioma = function (newIdioma) {
    var form = document.forms[0];
    form.__Idioma.value = newIdioma;
    form.submit();
}

//Vamos a la url
Goto = function (page) {
    var form = document.forms[0];
    form.action = page;
    form.submit();
}
