	function setForm(theBox, what)
	{
		if((theBox.checked) && (what == "tech"))
		{
			document.joinContact.techFirstName.value = document.joinContact.firstName.value
			document.joinContact.techLastName.value = document.joinContact.lastName.value
			document.joinContact.techemail.value = document.joinContact.email.value
			document.joinContact.techphone.value = document.joinContact.phone.value
			document.joinContact.techfax.value = document.joinContact.fax.value
			document.joinContact.techmobile.value = document.joinContact.mobile.value
			document.joinContact.techaddress.value = document.joinContact.address.value
			document.joinContact.techsuburb.value = document.joinContact.suburb.value
			document.joinContact.techpostcode.value = document.joinContact.postcode.value
			document.joinContact.techstate.selectedIndex = document.joinContact.state.selectedIndex
			document.joinContact.techcountry.value = document.joinContact.country.value
		}
		if((theBox.checked) && (what == "bill"))
		{
			document.joinContact.billingSame2.checked = false
			document.joinContact.billFirstName.value = document.joinContact.firstName.value
			document.joinContact.billLastName.value = document.joinContact.lastName.value
			document.joinContact.billemail.value = document.joinContact.email.value
			document.joinContact.billphone.value = document.joinContact.phone.value
			document.joinContact.billfax.value = document.joinContact.fax.value
			document.joinContact.billmobile.value = document.joinContact.mobile.value
			document.joinContact.billaddress.value = document.joinContact.address.value
			document.joinContact.billsuburb.value = document.joinContact.suburb.value
			document.joinContact.billpostcode.value = document.joinContact.postcode.value
			document.joinContact.billstate.selectedIndex = document.joinContact.state.selectedIndex
			document.joinContact.billcountry.value = document.joinContact.country.value
		}
		if((theBox.checked) && (what == "bill2tech"))
		{
			document.joinContact.billingSame.checked = false
			document.joinContact.billFirstName.value = document.joinContact.techFirstName.value
			document.joinContact.billLastName.value = document.joinContact.techLastName.value
			document.joinContact.billemail.value = document.joinContact.techemail.value
			document.joinContact.billphone.value = document.joinContact.techphone.value
			document.joinContact.billfax.value = document.joinContact.techfax.value
			document.joinContact.billmobile.value = document.joinContact.techmobile.value
			document.joinContact.billaddress.value = document.joinContact.techaddress.value
			document.joinContact.billsuburb.value = document.joinContact.techsuburb.value
			document.joinContact.billpostcode.value = document.joinContact.techpostcode.value
			document.joinContact.billstate.selectedIndex = document.joinContact.techstate.selectedIndex
			document.joinContact.billcountry.value = document.joinContact.techcountry.value
		}
		/*else
		{
			document.joinContact.techFirstName.value = ""
			document.joinContact.techLastName.value = ""
			document.joinContact.techemail.value = ""
			document.joinContact.techphone.value = ""
			document.joinContact.techfax.value = ""
			document.joinContact.techmobile.value = ""			
			document.joinContact.techaddress.value = ""			
			document.joinContact.techsuburb.value = ""			
			document.joinContact.techpostcode.value = ""			
			document.joinContact.techcountry.value = ""		
		}*/
	}