		function ToggleCountry() {
				if(document.getElementById("sub_selector").style.display != 'block') {
					document.getElementById("sub_selector").style.display='block';
				}else {
					document.getElementById("sub_selector").style.display='none';
				}

			}
			
		function GoHome() {
			  var parts = window.location.href.split('/')
			  var home = "http://"+parts[2]+"/"+parts[3];
			  window.location.href = home;
		}
