	var popcountry="countryselector.php"
	var winfeatures="width=300,height=150,scrollbars=0,resizable=0,toolbar=0,location=0,menubar=1,status=1,directories=0"

	var once_per_session=0

	function get_cookie(Name) {
		var search = Name + "="
		var returnvalue = "";
		if (document.cookie.length > 0) {
			offset = document.cookie.indexOf(search)
			if (offset != -1) { // if cookie exists
				offset += search.length
				end = document.cookie.indexOf(";", offset);
				if (end == -1) {
					end = document.cookie.length;
					returnvalue=unescape(document.cookie.substring(offset, end));
				}
			}
		}
		return returnvalue;
	}

	function loadornot(){
		if (get_cookie('popcountry')==''){
			loadpopcountry()
			document.cookie="popcountry=yes"
		}
	}

	function loadpopcountry(){
		win2=window.open(popcountry,"",winfeatures)
		win2.blur();
		window.focus()
	}

	if (once_per_session==0) {
		loadpopcountry()
	} else {
		loadornot()
	}
