//Cambio de idioma
function nuevoIdioma(idioma ,idioma_nuevo, ubicacion, variables)  {
	if (idioma_nuevo == "") {
		self.location ="http://www.nuestratierraweb.com.ar";
	} else if (ubicacion == "") {
		self.location ="http://www.nuestratierraweb.com.ar";
	} else {
		if (variables != ""){
			var lang = variables.search(/lang=/);
			if (lang < 0){
				self.location = ubicacion + "?lang=" + idioma_nuevo + "&" + variables;	 
			} else {
				new_vars = variables.replace("lang="+idioma, "lang="+idioma_nuevo);
				self.location = ubicacion + "?" + new_vars;	 
			}
		} else {
			self.location = ubicacion + "?lang=" + idioma_nuevo;	 
		}
	}
}
