function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
      function setBilling() {
	if(document.order.copy.checked == true){
		document.order.billingAddress.value = document.order.address.value;
		document.order.billingCity.value = document.order.city.value;
		document.order.billingState.value = document.order.state.value;
		document.order.billingZip.value = document.order.zip.value;
		document.order.phone2.value = document.order.phone.value;
	}else{
		document.order.billingAddress.value = '';
		document.order.billingCity.value = '';
		document.order.billingState.value = '';
		document.order.billingZip.value = '';
		document.order.phone2.value = '';
	}
}