// JavaScript Document
function loadRegion() {
	RegionSelectedIndex = document.FormRegion.SelectRegion.selectedIndex;
	if (RegionSelectedIndex!=0) {
		RegionText = document.FormRegion.SelectRegion.options[RegionSelectedIndex].text;
		document.location.href=RegionText+".html";
	}	
}

function copyAddress() {
	document.ContactForm.Preparation_Address.value = document.ContactForm.Address.value;	
}

