recherche = false;function closeALL(){	    $('#mask').css('visibility','hidden');    $('#modal').css('visibility','hidden')} function extractUrlIfRecherche () {    var t = location.search.substring(1).split('&');    var f = [];    for (var i=0; i<t.length; i++) {        var x = t[ i ].split('=');        if(x[0] == 'from' && x[1] =='recherche')            return true;    }    return false;}$(document).ready(function() {	     recherche = extractUrlIfRecherche();    texto = parseInt($('#affTexto').val());	   $("#btn_recherche_img").click(function() { /* MOTEUR RECHERCHE COTE */	   $this = $(this);   	   var fmt = $('input:checked#format').val()?true:false;	   var fmt2 = $('input:checked#format2').val()?true:false;	 //	   var texto = $this.parent().hasClass('moteur_texto')?1:0;		  	   $('#contenu').load('include/recherche.php', {auteur: $('#auteur').val(), titre: $('#titre').val(), motcle: $('#motcle').val(), genre: $('#genre').val(), periode: $('#periode').val(), format: fmt, format2: fmt2, p: 1, action: 0, coll_texto: texto});     });   	$("input#auteur").autocomplete({                	    source: 'include/auteur_complet.php?texto='+texto,	    //minLength: 2,	    select: function( event, ui ) {	           	           	    }	    	});		$("input#titre").autocomplete({	    source: 'include/titre_complet.php?texto='+$('#affTexto').val(),	    //minLength: 2,	    select: function( event, ui ) {	    	    }	    	}); 	    $('.newsletter').bind('click',function(){	   $(document).modal({height:245,width:455,ajax:true,className:'mdNewsletter',target:'newsletter.html'});   });      $('#format').bind('click', function(){	   if($('#format2').attr('checked')){		   $('#format2').removeAttr('checked');	   }   });      $('#format2').bind('click', function(){	   if($('#format').attr('checked')){		   $('#format').removeAttr('checked');	   }   });      $('.retourOuvrage').click(function() { /* MOTEUR RECHERCHE COTE */            	   $this = $(this);              if(recherche) {               var fmt = $('input:checked#format').val()?true:false;               var fmt2 = $('input:checked#format2').val()?true:false;	                $('#contenu').load('include/recherche.php', {auteur: $('#auteur').val(), titre: $('#titre').val(), motcle: $('#motcle').val(), genre: $('#genre').val(), periode: $('#periode').val(), format: fmt, format2: fmt2, p: 1, action: 0, coll_texto: texto});                 return false;            } else {               history.go(-1);return false;           }   });    });
