function redirect(url){
	window.location = url;
}

function copyAddress(){
	theform = document.forms["signup"];
	theform.shipSalutation.selectedIndex = theform.salutation.selectedIndex;
	theform.shipFirstName.value = theform.firstName.value;
	theform.shipInitial.value = theform.initial.value;
	theform.shipSurname.value = theform.surname.value;
	theform.shipTitle.value = theform.title.value;
	theform.shipCompany.value = theform.company.value;
	theform.shipAddress1.value = theform.address1.value;
	theform.shipAddress2.value = theform.address2.value;
	theform.shipCity.value = theform.city.value;
	theform.shipState.value = theform.state.value;
	theform.shipZipcode.value = theform.zipcode.value;
	theform.shipCountry.selectedIndex = theform.country.selectedIndex;
	theform.shipPhone.value = theform.phone.value;
	theform.shipFax.value = theform.fax.value;
	theform.shipEmail.value = theform.email.value;
}