function setShippingInfo(isChecked)
{
	with (window.document.frmOrder) {
		if (isChecked) {
			order_shipping_address1.value  			= order_billing_address1.value;
			order_shipping_address2.value   		= order_billing_address2.value;
			order_shipping_towncity.value   		= order_billing_towncity.value;
			order_shipping_countystate.value   		= order_billing_countystate.value;
			order_shipping_postcodezipcode.value 	= order_billing_postcodezipcode.value;
			order_shipping_country.value      		= order_billing_country.value;			
			
			order_shipping_address1.readOnly  		= true;
			order_shipping_address2.readOnly   		= true;
			order_shipping_towncity.readOnly   		= true;
			order_shipping_countystate.readOnly   	= true;
			order_shipping_postcodezipcode.readOnly = true;
			order_shipping_country.readOnly      	= true;			
		} else {
			order_shipping_address1.readOnly  		= false;
			order_shipping_address2.readOnly   		= false;
			order_shipping_towncity.readOnly   		= false;
			order_shipping_countystate.readOnly   	= false;
			order_shipping_postcodezipcode.readOnly = false;
			order_shipping_country.readOnly      	= false;			
		}
	}
}