function AirlinesList( aoEvent )
{
	if( aoEvent == null )
		aoEvent = event;
	if( aoEvent != null )
	{
		var loSrc = aoEvent.srcElement;
		if( loSrc == null )
			loSrc = aoEvent.target;

		if( loSrc != null && ( loSrc.tagName === "a" || loSrc.tagName === "A" ) )
		{
			var lsInitial = $( loSrc ).text( );
			if( lsInitial != null && lsInitial !== "" )
			{
				var lsUrl = $( ".divHndN" ).text( );
				if( lsUrl != null && lsUrl !== "" )
				{
					$( ".divALList" ).text( $( ".divMsg" ).text( ) );
					$.ajax( {
						cache: false,
						complete: AirlinesListFinal,
						data: "initlet=" + lsInitial,
						error: AirlinesListErr,
						success: AirlinesListOk,
						url: lsUrl
						} );
				}
			}
		}

		aoEvent.returnValue = false;
	}

	return false;
}

function AirlinesListOk( asData, asStatus )
{
	$( ".divALList" ).html( asData );
}

function AirlinesListErr( aoReq, asErr, aoEx )
{
	$( ".divALList" ).html( "&nbsp;" );
}

function AirlinesListFinal( aoReq, asType )
{
	if( $( ".divALList" ).text( ) === $( ".divMsg" ).text( ) )
		$( ".divALList" ).html( "&nbsp;" );
}
