function lang_switch (e, self)
{
	document.location.href = self + '?lang=' + e.value;
}

function SetStates(){
	if (typeof document.register == 'undefined')
		return;

	country = document.register.country.value;

	if (country == 'us' || country == 'ca'){
		document.forms["register"].state.disabled = false;
	} else {
		document.forms["register"].state.selectedIndex = 0;
		document.forms["register"].state.disabled = true;
	}
}

function open_agb(){
	window.open('/rules.php', 'rules', 'width=950,height=850,left=100,top=50,resizeable=yes,scrollbars=yes');
}