function selectCountry(sel) {
	var sel = document.getElementById("selCountry");
	// alert("Country selected: " + sel.options[sel.selectedIndex].value);
	if (sel) {
		var value = sel.options[sel.selectedIndex].value;
		if (value != "") {
			document.cookie = "gcBlogCountry=" + escape(value) + "; expires=Fri, 21-May-2010 00:00:00 GMT; path=/; domain=www.goldencompassmovie.com";
			document.location.href = "/blog/" + sel.options[sel.selectedIndex].value + "/";
		}
	}
	return false;
}

function writeCountrySelect() {	

	var arr = new Array();	
	arr[arr.length] = ["us", "USA"];
	// arr[arr.length] = ["fr", "France"];

	var str = "";
	str += '<form method="get" action="#" onsubmit="return selCountry();">';
	str += '		<select name="selCountry" id="selCountry">';
	str += '			<option selected="true" value="">Country Selection</option>';
	
	for (var i=0; i<arr.length; i++) {			
		str += '			<option value="' + arr[i][0] + '">' + arr[i][1] + '</option>';
	}
	
	str += '		</select>';
	str += '		<input class="submitSmall" type="button" value="GO" onmouseup="selectCountry()" />';
	str += '	</form>';
	
	document.write(str);
}

window.onload = function() {
	// setPageIcons();	
	// checkVideoLinks();
}

