$(window).addEvent('domready', function(){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';
			$('countryNoShipTo').style.display = '';
		}
	}
	else{
		$('userShipping').style.display = 'none';
		
		if($('countryTD')){
			//$('countryTD').style.display = '';
			$('country').style.display = '';
			$('subCountries').style.display = '';
			$('countryNoShipTo').style.display = 'none';
		}
	}
	if($('userInformationForm'))initFormFields('userInformationForm');
}
