$(window).addEvent('domready', function(){if($('userInformationForm'))initFormFields('userInformationForm');});

function requireShipTo(value)
{
	document.getElementById('firstNameShippingField').setAttribute('requiredField', value);
	document.getElementById('lastName1ShippingField').setAttribute('requiredField', value);
	document.getElementById('lastName2ShippingField').setAttribute('requiredField', value);
	document.getElementById('addressShippingField').setAttribute('requiredField', value);
	document.getElementById('cityShippingField').setAttribute('requiredField', value);
	document.getElementById('zipShippingField').setAttribute('requiredField', value);
	
	
	if(value == 1){
		$('userShipping').style.display = '';
		
		if($('countryTD')){
			//$('countryTD').style.display = 'none';
			//$('country').style.display = 'none';
			$('subCountries').style.display = 'none';
			
			$('lblOtherCountry').style.display = 'none'
			$('lblOtherCountryShipTo').style.display = ''
			
			$('lblCountryShipTo').style.display = 'none'
			$('lblCountry').style.display = ''
			
			$('countryNoShipTo').style.display = '';
		}
		$('lblInvoiceAddressSameShippingAdrressInfo').style.display = 'none';
		$('lblInvoiceShippingAddressInfo').style.display = '';
	}
	else{
		$('userShipping').style.display = 'none';
		
		if($('countryTD')){
			//$('countryTD').style.display = '';
			//$('country').style.display = '';
			$('subCountries').style.display = '';

			$('lblOtherCountry').style.display = ''
			$('lblOtherCountryShipTo').style.display = 'none'
			
			$('lblCountryShipTo').style.display = ''
			$('lblCountry').style.display = 'none'
			
			$('countryNoShipTo').style.display = 'none';
		}
		$('lblInvoiceAddressSameShippingAdrressInfo').style.display = '';
		$('lblInvoiceShippingAddressInfo').style.display = 'none';
	}
	if($('userInformationForm'))initFormFields('userInformationForm');
}
