function TEST(ref,type) {

	$('#test'+ref).css('display','none');
	$.get("/test_update.php?ref="+ref+"&type="+type,function(html) {
		if (html == '') {
			$('#test'+ref).html('Déjà testé !');
		} else {
			$('#test'+ref).html('Testé ('+html+' fois)');
		}
	});
	$('#test'+ref).fadeIn();

}

function TEST_MARCHAND(ref,type) {

	$('#test_marchand'+ref).css('display','none');
	$.get("/test_update.php?ref="+ref+"&type="+type,function(html) {
		if (html == '') {
			$('#test_marchand'+ref).html('Déjà testé !');
		} else {
			$('#test_marchand'+ref).html('Testé ('+html+' fois)');
		}
	});
	$('#test_marchand'+ref).fadeIn();

}
