var Users = {
	changeCountry: function(country) {
		if (country == 'US') {
			Element.show('State');
			Element.hide('Province');
		} else {
			Element.show('Province');
			Element.hide('State');
		}
	},
	
	retrievePassword: function() {
		Utils.cssWindow('/users/retrievePassword', 'Retrieve Password', '500', '200');
	},
	
	editAddress: function(retURL) {
		Utils.cssWindow('/users/editAddress/'+retURL, 'Personal Info');
	},
	
	editPayment: function(retURL) {
		Utils.cssWindow('/users/editPayment/'+retURL, 'Payment Info');
	},
	
	editEmail: function(retURL) {
		Windows.closeAll();
		Utils.cssWindow('/users/editEmail/'+retURL, 'Email');
	},
	
	editPassword: function(retURL) {
		Windows.closeAll();
		Utils.cssWindow('/users/editPassword/'+retURL, 'Password');
	},
	
	loginIssues: function(retURL) {
		Utils.cssWindow('/users/loginIssues/'+retURL, '', '500', '200');
	}
}