show = true;

function scrollResultList(result_idx){
	document.getElementById('result_index').value = result_idx;
	document.forms.pagination_form.submit();
}

function changeSortingBy(select_sorting_by){
	document.forms.sorting_form.submit();
}

function changeSortingOrder(select_sorting_order){
	document.forms.sorting_form.submit();
}

function openReviewDlg( trip ) {
	
	reviewDlg = $( '#reviewDlg' );
	reviewDlg.load( '/scripts/wol/er_customer_ratings_ajax.php?trip_no=' + trip );
	reviewDlg.dialog({
		modal: true,
		resizeable: false,
		buttons: {
			'Schließen': function() {
							
					reviewDlg.dialog( 'close' );
			 }
		},
		close: function( event, ui ) {
				reviewDlg.html( '<p style="text-align: center"><img src="/fileadmin/fha/template/img/icon_loaderLarge.gif" height="66" width="66" /><br />Bewertungen werden geladen. Bitte haben Sie eienen Augenblick Geduld.</p>' );
		}
	});
}

function showComments() {
	$( '#notes' ).slideToggle();
}
