function setShippingInfo(isChecked)

{
	with(document.frmCreatAccount){
		
		if (isChecked) {
			
			cboShippingCountry.value  = cboBillingCountry.value;
			txtShippingAddress1.value = txtBillingAddress1.value;
			txtShippingAddress2.value = txtBillingAddress2.value;
			txtShippingCity.value     = txtBillingCity.value;
			txtShippingZipCode.value  = txtBillingZipCode.value;
			txtShippingPhone.value    = txtBillingPhone.value;
			txtShippingFax.value      = txtBillingFax.value;
			
			loadState(cboBillingCountry.value,'ShippingState');			
			
			if (document.getElementById("cboBillingState") != null) {				
				
				cboShippingState.value    = cboBillingState.value;
				cboShippingState.readOnly = true;
				
				
			}
			else if (document.getElementById("txtBillingState") != null) {
				
				txtShippingState.value    = txtBillingState.value;
				txtShippingState.readOnly = true;
				
			}
			
				
			cboShippingCountry.readOnly  = true;
			txtShippingAddress1.readOnly = true;
			txtShippingAddress2.readOnly = true;
			txtShippingCity.readOnly     = true;
			txtShippingZipCode.readOnly  = true;
			txtShippingPhone.readOnly    = true;
			txtShippingFax.readOnly      = true;
			
			
		}
		else{
			
			cboShippingCountry.disabled  = false;
			txtShippingAddress1.readOnly = false;
			txtShippingAddress2.readOnly = false;
			txtShippingCity.readOnly     = false;
			txtShippingZipCode.readOnly  = false;
			txtShippingPhone.readOnly    = false;
			txtShippingFax.readOnly      = false;
			
			if (document.getElementById("cboShippingState") != null) {
				
				
				cboShippingState.disabled = false;
				
			}
			else if (document.getElementById("txtShippingState") != null) {
				
				txtShippingState.readOnly = false;
			}
			
		}
	
	}
	
}
