// JavaScript Document


<!--
	function FillPickUpForm(){
		document.ord.company.value = document.ord.company2.value;
		document.ord.address.value = document.ord.address2.value;
		document.ord.city.value = document.ord.city2.value;
		document.ord.zip.value = document.ord.zip2.value;
		document.ord.phone.value = document.ord.phone2.value;
		document.ord.fax.value = document.ord.fax2.value;

	}
	
	function FillDeliveryForm(){
		document.ord.inpoSeeThem.value = document.ord.inpoAuth.value;
		document.ord.inpoSeeThemCO.value = document.ord.inpoName.value;
		document.ord.inpoDeliverTo.value = document.ord.inpoAddr.value;
		document.ord.inpoDeliverCSZ.value = document.ord.inpoCity.value;
		document.ord.inpoDeliverState.value = document.ord.inpoState.value;
		document.ord.inpoDeliverZip.value = document.ord.inpoZip.value;
		document.ord.inpoPhoneThem.value = document.ord.inpoAuthPhone.value;
		document.ord.inpoEXT2.value = document.ord.inpoEXT0.value;
	}

//-->
