/*
Performs an AJAX request for the country specific
province select box
*/
function getProvince()
{
	new Ajax.Updater('province', './ajax/getProvince.php', {
		parameters: { country_code: $('country').value }
	});
}

/*
Navigates to a specific page
*/
function gotoPage(page)
{
    window.location = page;
}

/*
Displays confirmation box for delete clicks

form_id		the form to submit
*/
function confirmDelete(form_id, message)
{
	var answer = confirm("Are you sure? " + '\n' + message);
	
	if(answer)
	{
		$(form_id).submit();
	}
}
