//Cambio de idioma
function nuevoIdioma(idioma ,idioma_nuevo, ubicacion, variables)  {
	if (idioma_nuevo == "") {
		self.location ="http://www.masteringmansion.com";
	} else if (ubicacion == "") {
		self.location ="http://www.masteringmansion.com";
	} 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;	 
		}
	}
}
			/*
			switch (idioma) {
				case "es":
					new_vars = variables.replace("lang="+idioma_nuevo, "lang="+idioma_nuevo));				
					break;
				case "en":
				
					break;
				case "pr":
				
					break;
				default:
       
			}
			*/