
var num = "";
var revendeur = "";

$(document).ready(function(){
	
	$('#check').hide();
	$('#check_ok').hide();
	$('#check_ko').show();	
	$('#loading').hide();
	$('#continuer').hide();
	
	//$("a#check").click(function(){
	$("#serial").keyup(function () {
		num = $("input#serial").val();
		if(num.length>9) {
			$('#loading').show();
			$('#check_ok').hide();
			$('#check_ko').hide();
			$.ajax({
				type: "GET",
				url: "checkNumSerieNext.php",
				data: "num="+num,
				success: function(msg){
					//alert('--'+msg+'--');
					$('#loading').hide();
					if(msg == "ok ") {
						$('#check_ok').show();
						$('#check_ko').hide();	
					} else if (msg == "ko ") {
						$('#check_ok').hide();
						$('#check_ko').show();	
					}
				},
				error: function(msg) {
					//alert( msg );
					$('#loading').hide();
					$('#check_ko').show();
					$('#check_ok').hide();
				}
			});
		}
		
	});
	
	$('#check_ok2').hide();
	$('#check_ko2').show();
	
	$("#refdistributeur").keyup(function () {
		revendeur = $("input#refdistributeur").val();
		if(revendeur.length>2) {
			$('#check_ok2').show();
			$('#check_ko2').hide();
			$('#continuer').show();
		} else {
			$('#check_ok2').hide();
			$('#check_ko2').show();
			$('#continuer').hide();
		}
	});

});