<!--
/* This is used to rebuild the URL for the WSOP pages with the selected language */
function changeUrl(host) {
	/* Get the language selected from the drop down */
	redirect = document.getElementById("language_choice").value;
	/* Get the full URL passed to the function and split it into array based on "/" */
	var urlpathway = host;
	var urlparts = urlpathway.split("/");
	/* Replace the current language with the one selected */
	urlparts[3] = redirect;
	/* Rebuild the URL and redirect to the page with the proper language */
	var newURL = "/" + urlparts[3] + "/" + urlparts[4] + "/" + urlparts[5] + "/" + urlparts[6];
	window.location = newURL;
}
-->