
	function showProfile(as_no)
	{
		$('#dialog_profile').empty().hide().append('<img src="../ressources/images_design/loading_bar_red.gif"/>');
		$('#dialog_profile').dialog("open");
		$.post('./ajax_profile.php', 'as_no='+as_no, function(data){
			$('#dialog_profile').fadeOut('slow', function(){
											$(this).empty().append(data).fadeIn('slow');
											updatePres('#dialog_profile');
											});
		}, 'html');
	}

		$(function() {
			$("#dialog_profile").dialog({
				height: 600,
				width: 900,
				position:top,
				modal: true,
				autoOpen: false,
				buttons: { "Ok": function() { $(this).dialog("close");}}
			});
			$("#tabs_carnet").tabs({ ajaxOptions: {
							beforeSend: function(){
									$('#tabs_carnet div:visible').empty().append('<div align="center"><img src="../ressources/images_design/loading_bar_red.gif"/></div>');
													}
												},
									load: function(event, ui){
									updatePres('#tabs_carnet div:visible');
												}
									});
		});
