<!--

function verify_field( field, value ) 
{
	if( field )
	{
		getContent( 'user', 'reg_field='+ field + '&value=' + ( !value ? '' : value ), false, false, 'showVerifyResult' );
	}
}


function check_amnesia( result )
{
	if ( result == '' )
	{
		showVerifyResult( 'Неверный ключ восстановления пароля.' );
	}
	else if ( document.getElementById( 'user_amnesia_form' ) )
	{
		document.getElementById( 'user_amnesia_form' ).innerHTML = result;
	}
}

function resultRegistration( result )
{
	if ( result !== '' )
	{
		showVerifyResult( result );
	}
	else
	{
		document.location.href = '/catalog.html';
	}
}

function getRegionList( country )
{
	$('#region_list').load('/user/ajax.html', { region : '', country_id : country } );
	$('#city_list').load('/user/ajax.html', { city : '', region_id : '' } );
}

function getCityList( region )
{
	$('#city_list').load('/user/ajax.html', { city : '', region_id : region } );
}

function getDeliveryList( city )
{
	$('#delivery_method_list').load('/cart/ajax.html', { delivery : '', city_id : city } );
}

// -->