function validateFormSearch2(thisForm){ 
		var string = trim(thisForm.product_nom_like.value); 				
		if	(string.length < 2){
			alert ('Vous devez saisir un minimum de 2 caractères pour votre recherche !');
			return false; 
    }else {
			return true;
		}
}