function ContactSearchNext(item,container,sUrl,iOrderId,iQuestionId){
	if(item.value == 'none'){
		$('#'+container).slideUp("slow",function(){
			$('#'+container).hide();
		});		
	}
	else{
		$('#load_'+iQuestionId).show();
		$.ajax({
			type: "GET",
			url: sUrl,
			data: 'question_id='+item.value+'&order_id='+iOrderId,
			success: function(msg){
				$('#'+container).slideDown("slow",function(){					
					$('#'+container).html(msg);
					$('#'+container).show();
				});							
				$('#load_'+iQuestionId).hide();	
		   	}
		});
	}
}

function Formulaire_Send(){
	return true;
}

function Show_Form(affichageId,sUrl,iOrderId){	
	$.ajax({
		type: "GET",
		url: sUrl,
		data: 'question_id='+affichageId+'&order_id='+iOrderId,
		success: function(msg){
			$('#main_contact').html(msg);
	   	}
	});
}

function ShowFormContact(iAffichageId,iOrderId){
	$.ajax({
		type: "GET",
		url: '/account/order/showformcontact/',
		data: 'affichage_id='+iAffichageId+'&order_id='+iOrderId,
		success: function(msg){
			$('#main_contact').html(msg);
	   	}
	});
}

function Show_End(sUrl,iAffichageId,iOrderId){
	$.ajax({
		type: "GET",
		url: sUrl,
		data: 'action=faq_ok&affichage_id='+iAffichageId+'&order_id='+iOrderId,
		success: function(msg){
			$('#main_contact').html(msg);
	   	}
	});
}

