function CanviarIdioma()
{
	var Direccio = document.URL;
	var PosicioIdioma = Direccio.indexOf('eng');
	if (PosicioIdioma == -1) PosicioIdioma = Direccio.indexOf('esp');
	if (PosicioIdioma != -1) 
	{
		var Base = Direccio.substring(0, PosicioIdioma);
		var Idioma = Direccio.substring(PosicioIdioma, PosicioIdioma + 3);
		var Pagina = Direccio.substring(PosicioIdioma + 4, Direccio.length);

		if (Idioma == 'eng')
			Idioma = 'esp'
		else
			Idioma = 'eng';
			
		// es canvia temporalment mentre es reconstrueix el site en anglès
		// temporarily changed while rebuilding english site
		if (Idioma == 'eng') {
			document.location.href = Base + Idioma + '/rebuilding.html';
		} else {
			document.location.href = Base + Idioma + '/' + Pagina;
		}
	}
}

