// JavaScript Document

function paises()
{
	idioma = document.getElementById("desplegable_idiomas").value;
	url = document.location.href;
	posicion = url.indexOf("lang=");
	if (posicion == -1)
	{
		document.location.href = url + '?lang=' + idioma;
	}
	else
	{
		//false: Es numero
		//true: No es numero
		if(isNaN(url.substr(posicion+5, 1))==false)
		{
			tamano = url.length;
			//Si hay idioma
			trozo1= url.substr(0, posicion);
			trozo2= url.substr(posicion+6, tamano);
			document.location.href = trozo1 + trozo2 + '&lang=' + idioma;			
		}
		else
		{
			//no hay idioma
			tamano = url.length;
			//Si hay idioma
			trozo1= url.substr(0, posicion);
			trozo2= url.substr(posicion+5, tamano);
			document.location.href = trozo1 + trozo2 + '&lang=' + idioma;
		}
	}
}


//function paises(idioma)
//{
	//url = document.location.href;
	//posicion = url.indexOf("lang=");
	//if (posicion == -1)
	//{
		//document.location.href = url + '?lang=' + idioma;
	//}
	//else
	//{
		//false: Es numero
		//true: No es numero
		//if(isNaN(url.substr(posicion+5, 1))==false)
		//{
			//tamano = url.length;
			//Si hay idioma
			//trozo1= url.substr(0, posicion);
			//trozo2= url.substr(posicion+6, tamano);
			//document.location.href = trozo1 + trozo2 + '&lang=' + idioma;			
		//}
		//else
		//{
			//no hay idioma
			//tamano = url.length;
			//Si hay idioma
			//trozo1= url.substr(0, posicion);
			//trozo2= url.substr(posicion+5, tamano);
			//document.location.href = trozo1 + trozo2 + '&lang=' + idioma;
		//}
	//}
//}