// JavaScript Document
function copyShipperToDestination(rfpForm) {
var flagDestination=document.getElementById('rfpDestinationIsShipper');
if(flagDestination.checked==true) {
	rfpForm.Destination_AdrCity.value = rfpForm.Customer_AdrCity.value;
	rfpForm.Destination_AdrState.value = rfpForm.Customer_AdrState.value;
	rfpForm.Destination_AdrStreet_01.value = rfpForm.Customer_AdrStreet_01.value;
	rfpForm.Destination_AdrStreet_02.value = rfpForm.Customer_AdrStreet_02.value;
	rfpForm.Destination_AdrZIP.value = rfpForm.Customer_AdrZIP.value;
	rfpForm.Destination_Company.value = rfpForm.Customer_Company.value;
	rfpForm.Destination_NameContact.value = rfpForm.Customer_NameContact.value;
	rfpForm.Destination_Phone.value = rfpForm.Customer_Phone.value;
}
}