/* CODE REPAIRED BY MAT
** Script tags don't start in .js files.

<script type="text/javascript">
*/
function copyBillToInfo(){


/* CODE REPAIRED BY MAT
** Form didn't have an ID.

	if(document.FormID.checkbox.checked) {
		document.FormID.HomeAddress1.value = document.FormID.BillingAddress1.value;
		document.FormID.HomeAddress2.value = document.FormID.BillingAddress2.value;
		document.FormID.HomeCity.value = document.FormID.BillingCity.value;
		document.FormID.HomeState.value = document.FormID.BillingState.value;
		document.FormID.HomeZipCode.value = document.FormID.BillingZipCode.value;
		}
*/

	if (document.getElementById("checkbox").checked) {
		document.getElementById("BillingAddress1").value = document.getElementById("HomeAddress1").value;
		document.getElementById("BillingAddress2").value = document.getElementById("HomeAddress2").value;
		document.getElementById("BillingCity").value = document.getElementById("HomeCity").value;
		document.getElementById("BillingState").value = document.getElementById("HomeState").value;
		document.getElementById("BillingZipCode").value = document.getElementById("HomeZipCode").value;
	} else {
		document.getElementById("BillingAddress1").value = "";
		document.getElementById("BillingAddress2").value = "";
		document.getElementById("BillingCity").value = "";
		document.getElementById("BillingState").value = "";
		document.getElementById("BillingZipCode").value = "";
	}
		
}
/* CODE REPAIRED BY MAT
** Script tags don't start in .js files.

</script>
*/
