function specialAction(action){
var form = document.forms[0];
if(action == 1 && !form.elements['username'].value){
	alert("Please type your email address as user name.");
	form.elements['username'].focus();
	return;
}
form.elements['specialaction'].value = action;
form.submit();
}
function clearSpecialAction(form){
	form.elements['specialaction'].value = '';
}
function oncountrychange(country){
	if(!country)
		country = document.forms[0].elements['country'];

	if(!country.value)
		country.value = 'United States';

	var showDropdown = country.value == 'United States' || country.value == 'Canada';
	var stateInput = country.form.elements['state'];
	var stateDropdown = country.form.elements['stateUS'];
	stateInput.style.display = showDropdown ? 'none' : '';
	stateDropdown.style.display = showDropdown ? '' : 'none';
}
function validateform(form){	
	var country = form.elements['country'];
	var showDropdown = country.value == 'United States' || country.value == 'Canadian';
	if(showDropdown)
		form.elements['state'].value = form.elements['stateUS'].value;
}
