// input element must be surrounded by a div element; input element must be named the same as the div element with 'Input' appended
function toggleInternational(country, USDivElement, intlDivElement, USInputElement, intlInputElement, inputName)
{
	if (country != 'US' && country != 'CA')
	{
		modifyDisplay(intlDivElement, 'block');
		modifyDisplay(USDivElement, 'none');
		document.getElementById(intlInputElement).name = inputName;
		document.getElementById(USInputElement).name = inputName + '_other';
	}
	else
	{
		modifyDisplay(USDivElement, 'block');
		modifyDisplay(intlDivElement, 'none');
		document.getElementById(USInputElement).name = inputName;
		document.getElementById(intlInputElement).name = inputName + '_other';
	}
}