<br />
<b>Notice</b>:  Undefined offset:  0 in <b>/var/www/42prod/inc/clearbricks/dblayer/dblayer.php</b> on line <b>946</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/42prod/inc/clearbricks/dblayer/dblayer.php:946) in <b>/var/www/42prod/inc/public/lib.urlhandlers.php</b> on line <b>17</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /var/www/42prod/inc/clearbricks/dblayer/dblayer.php:946) in <b>/var/www/42prod/inc/clearbricks/common/lib.http.php</b> on line <b>326</b><br />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="fr" lang="fr">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <meta name="MSSmartTagsPreventParsing" content="TRUE" />
  <meta name="ROBOTS" content="NOINDEX, FOLLOW, NOARCHIVE" />
  <title>Document non trouvé - Aromat'Easy, Parfums et Couleurs</title>
  <meta name="DC.title" content="Page not found - Aromat'Easy, Parfums et Couleurs" />
  
  <link rel="top" href="http://www.aromateasy.net/" title="Accueil" />
  <link rel="contents" title="Archives" href="http://www.aromateasy.net/archive" />
  <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.aromateasy.net/feed/rss2" />
  <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="http://www.aromateasy.net/feed/atom" />
  
  <style type="text/css" media="screen">
@import url(http://c0001430.cdn2.cloudfiles.rackspacecloud.com/themes/sunnyflower/style.css);
</style>
<style type="text/css" media="print">
@import url(http://www.aromateasy.net/priv/themes/sunnyflower/print.css);
</style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript" src="http://c0001430.cdn2.cloudfiles.rackspacecloud.com/js/jquery.cookie.js"></script>



		
		<style type="text/css" media="screen">
		@import url(http://www.aromateasy.net/?pf=ecommerce/css/stores.css);
		</style>
<script type="text/javascript">addCart = function(id) {
				$('#cart-review').jqm(
				{ajax: 'http://www.aromateasy.net/fullcart/addcart/'
				+id, 
	  			onHide: function(h) { h.w.fadeOut(500); h.o.remove(); 
	  				$('#cart').load('http://www.aromateasy.net/cart/show'); },
	  			ajaxText: '<p style="text-align: center;padding:50px"><img src="http://www.aromateasy.net/themes/sunnyflower/../default/ajax-loader.gif" alt="Chargement du panier" align="absmiddle" /></p>' 
	  		});$('#cart-review').jqmShow();}
			$(function(){
				$('#cart').ajaxError(function(request, settings){ 
					$(this).val('Error requesting page ' + settings.url);
				});
				$('#cart').load('http://www.aromateasy.net/cart/show');
			});
			</script>
			
			<script type="text/javascript" src="http://c0001430.cdn2.cloudfiles.rackspacecloud.com/js/interface.js"></script>
			<script type="text/javascript" src="http://c0001430.cdn2.cloudfiles.rackspacecloud.com/js/jquery.form.js"></script>
		<script type="text/javascript" src="/?pf=ecommerce/js/product.js"></script> <script type="text/javascript">
			//parse_url en js
			function parse_url (str, component) {
			    var key = ["source", "scheme", "authority", "userInfo", "user", "pass", "host", "port", 
			                        "relative", "path", "directory", "file", "query", "fragment"],
			        parser = /^(?:([^:\/?#]+):)?(?:\/\/()(?:(?:()(?:([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?()(?:(()(?:(?:[^?#\/]*\/)*)()(?:[^?#]*))(?:\?([^#]*))?(?:#(.*))?)/;
			 
			    var m = parser.exec(str),
			        uri = {},
			        i = 14;
			    while (i--) {
			        if (m[i]) {
			          uri[key[i]] = m[i];  
			        }
			    }
			    if (component) {
			        return uri[component.toLowerCase()];
			    }
			}
			
			
			$(function() {
				var url = document.location.href;
				var referrer = document.referrer;
				
				var domainReg = new RegExp("(http[s]?:\/\/[^\/; &]*)");
				var domain = domainReg.exec(url)[1];
				if(!domain)
					domain = url;
				
				var getC = new RegExp("[\?, &]c=([^&]*)");
				getC = getC.exec(url);
				
				//Si $_GET['c']  on pose un cookie la dernière campagne écrase celle d avant
				if(getC && getC[1])
					$.cookie('campaign', getC[1], {expires: 30, path: '/'});
					
				//Si il n'y a pas de cookie et que le referrer est externe au site
				else if (($.cookie("campaign") == null || $.cookie("campaign").substr(0,1)=="@") && referrer && referrer.indexOf(domain) == -1) 
				{
					var search_query = false;
					
					// ?p=abc pour YAHOO
					var yahoo = new RegExp("[\&\?]p=([^&]*)");
					yahoo = yahoo.exec(referrer);
					if(yahoo && yahoo[1])
					{
						search_query = decodeURIComponent(yahoo[1] + "");
						search_query = search_query.replace(/\+/g, " ");
					}
					
					// ?q=abc pour Google et Bing
					var google = new RegExp("[\&\?]q=([^&]*)");
				    google = google.exec(referrer);
					if(google && google[1])
					{
						search_query = decodeURIComponent(google[1] + "");
						search_query = search_query.replace(/\+/g, " ");
					}
					
					if(search_query) 
					{
						var moteur = parse_url(referrer,"host");
						if (moteur.indexOf("www.") == 0)
							moteur = moteur.substr(4);
						var campagne = "@"+moteur+" "+ search_query;
					} 
					else
						var campagne = "@"+referrer.substr(7);
					$.cookie("campaign", campagne, {expires: 30, path: "/"});
				}
			});
			</script><script type="text/javascript">

		var _gaq = _gaq || [];
		_gaq.push(['_setAccount', 'UA-6811378-5']);
		_gaq.push(['_setDomainName', 'www.aromateasy.net']);
		_gaq.push(['_setAllowHash', false]);
		_gaq.push(['_trackPageview']); 

			(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
			 })();
		
		</script><meta name="google-site-verification" content="GDCaxVEbUq0w9i8P9rPv97mVN97nKY0P3yl0q6xWXLo" />
		 	<meta name="description" content="Colorants et parfums cosmétiques, Colorants et arômes alimentaires, Savons feutrés, Producteur des Hydrolats Coeur en Montagne." />
			<script type="text/javascript" src="http://www.aromateasy.net/themes/default/js/jqueryslidemenu.js"></script><style type="text/css" media="screen">
@import url(http://www.aromateasy.net/priv/custom_style_sunnyflower.css);#top { background : transparent url(/pub/banniere_JANVIER_2012_copie.jpg) no-repeat left bottom; }
</style>
<style type="text/css" media="screen">
@import url(http://www.aromateasy.net/pub/custom_style_sunnyflower_2.css);
</style>
<style type="text/css">
@import url(http://www.aromateasy.net/?pf=lightbox/css/jqModal.css);
</style>
<script type="text/javascript" src="http://www.aromateasy.net/?pf=lightbox/js/jqModal42.js"></script>
<script type="text/javascript">
//<![CDATA[
$().ready(function() {
  		$('#cart-ajax').jqm({ajax: '/fullcart/showcart',ajaxText: '<p style="text-align: center;padding:50px"><img src="http://www.aromateasy.net/themes/sunnyflower/../default/ajax-loader.gif" alt="Chargement du panier" align="absmiddle" /></p>'});
		});$(function() {
var lb_settings = {
loader_img : 'http://www.aromateasy.net/?pf=lightbox/img/loader.gif',
prev_img   : 'http://www.aromateasy.net/?pf=lightbox/img/prev.png',
next_img   : 'http://www.aromateasy.net/?pf=lightbox/img/next.png',
close_img  : 'http://www.aromateasy.net/?pf=lightbox/img/close.png',
blank_img  : 'http://www.aromateasy.net/?pf=lightbox/img/blank.gif'
};$("div#new-product").each(function() {
$(this).find("a[href$=.jpg],a[href$=.jpeg],a[href$=.png],a[href$=.gif],a[href$=.JPG],a[href$=.JPEG],a[href$=.PNG],a[href$=.GIF]").modalImages(lb_settings);
})
$(".productDetail").each(function() {
$(this).find("a[href$=.jpg],a[href$=.jpeg],a[href$=.png],a[href$=.gif],a[href$=.JPG],a[href$=.JPEG],a[href$=.PNG],a[href$=.GIF]").modalImages(lb_settings);
})
$(".productInList").each(function() {
$(this).find("a[href$=.jpg],a[href$=.jpeg],a[href$=.png],a[href$=.gif],a[href$=.JPG],a[href$=.JPEG],a[href$=.PNG],a[href$=.GIF]").modalImages(lb_settings);
})
$("div.post").each(function() {
$(this).find("a[href$=.jpg],a[href$=.jpeg],a[href$=.png],a[href$=.gif],a[href$=.JPG],a[href$=.JPEG],a[href$=.PNG],a[href$=.GIF]").modalImages(lb_settings);
})
});

//]]>
</script>
<link rel="shortcut icon" type="image/x-icon" href="http://www.aromateasy.net/pub/favicon.ico" />
<script type="text/javascript">        
					$(function() {
						$.post(
							"/log.php",
							{
							  "url"   		: document.location.href,
							  "referrer"	: document.referrer
							},
							function(result){});
					});
				</script><script src="http://connect.facebook.net/fr_FR/all.js#appId=146464778762129&amp;xfbml=1"></script>

<link rel="shortcut icon" type="image/x-icon" href="/pub/favicon.ico">
</head>

<body class="dc-404">
<div id="page">
<div id="top">
  <h1><span><a href="http://www.aromateasy.net/">Aromat'Easy, Parfums et Couleurs</a></span></h1>

  </div>
  <div id="HorizontalMenu"><div id="myslidemenu" class="jqueryslidemenu"><ul><li><a href="http://www.aromateasy.net/" >Accueil</a></li><li><a href="http://recettesaroma.wordpress.com/" >Recettes</a></li><li><a href="http://www.aromateasy.it" >Italia</a></li></ul></div><div id="myslidemenu2" class="jqueryslidemenu2"><ul><li><a href="/checkout" >Panier</a></li><li><a href="/contact" >Contact</a></li></ul></div><div style="clear:both"></div></div>
<div id="wrapper">

<div id="main">
  <div id="content">
  
  <div id="content-info">
    <h2>Document non trouvé</h2>
  </div>
  
  <div class="content-inner">
    <p>Le document que vous cherchez n'existe pas.</p>
  </div>
  
  </div>
</div>

<div id="sidebar">
  <div id="blognav">
    <div class="text"><h2>NOUVEAU</h2>Pour trouver le mica de votre futur savon, classer les fragrances par notes pour la création des parfums, ou découvrir les nouvelles fragrances végétales sans allergène, cliquez sur les catégories correspondantes et utilisez les filtres dans la colonne de droite!</div><div id="search"><h2><label for="q">Rechercher</label></h2><form action="http://www.aromateasy.net/" method="get"><fieldset><p><input type="text" size="10" maxlength="255" id="q" name="q" value="" /> <input class="submit" type="submit" value="ok" /></p></fieldset></form></div><div class="text"><h2>BIENVENUE</h2>- 10 % de remise sur votre première commande avec le code remise "BIENVENUE"</div><div class="text"><h2>DELAIS DE LIVRAISON</h2>Boutique sous la neige! Les services postaux ne sont plus assurés depuis jeudi 02 février. Prévoyez quelques jours de retard pour les livraisons!
Merci!</div><div class="text"></div><div id="newsletter"><h2>Newsletter</h2><p class="Newsmessage">Codes remise, nouveautés, jeux concours, pour tout savoir c'est ici!</p><form action="/newsletter/inscription" method="post"><fieldset><p class="NewsEmail">Email :</p><p><input class="NewsFieldEmail" type="text" size="25" maxlength="255" id="email" name="email" value="" /></p> <input type="hidden" name="subscribe"><p class="NewsSubmit"><input class="submit" type="submit"  value="S'abonner" /></p></fieldset></form></div><div class="text"><h2>Livre d'Or</h2><a href="http://www.free-livredor.com/aromat-easy-56922-1.html">Partagez votre expérience ici!</a></div><div class="translate"><h2>Traduction</h2><ul><a class="lang-en" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|en"><img src="http://www.google.fr/images/flags/uk_flag.png"/></a> <a class="lang-it" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|it"><img src="http://www.google.fr/images/flags/it_flag.png"/></a> <a class="lang-lt" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|lt"><img src="http://www.google.fr/images/flags/lt_flag.png"/></a> <a class="lang-es" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|es"><img src="http://www.google.fr/images/flags/es_flag.png"/></a> <a class="lang-de" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|de"><img src="http://www.google.fr/images/flags/de_flag.png"/></a> <a class="lang-ce" href="http://translate.google.com/translate?hl=fr&u=http%3A%2F%2Fwww.aromateasy.net%2F&langpair=fr|ce"><img src="http://www.google.fr/images/flags/ce_flag.png"/></a> </ul></div><div class="text"><h2>Expéditions dans le monde entier</h2>Frais de port gratuits en France Métropolitaine et offerts<br>
- pour les mini commandes ou à partir de 95 euros pour les DOM TOM<br>
- pour les mini commandes et dès 75 euros en UE, Suisse et Norvège<br>
- 95 euros en Europe hors UE, et Maghreb, de 2,40 à 22 euros en dessous<br></div><div id="community"><h2>Mes sites amis</h2><ul><li><a href="/todirectory/?id=www.lechatquipique.com" target="_blank">Le Chat Qui Pique</a></li><li><a href="/todirectory/?id=www.ichigotopinattsu.com" target="_blank">Ichigo to Pïnattsu</a></li><li><a href="/todirectory/?id=emaillerie.42stores.com" target="_blank">Emaillerie Normande</a></li><li><a href="/todirectory/?id=www.fetedecor.com" target="_blank">Décoration métal pour la table</a></li><li><a href="/todirectory/?id=www.pause-creative.fr" target="_blank">Pause Créative</a></li><li><a href="/community">Voir la liste complète</li></ul></div><div class="text"><a href="http://www.allee-du-foulard.com" target="_blank" title="Foulard">Foulard</a></div><div class="text"><a href="http://www.chapeau-tendance.com" target="_blank" title="chapeau">chapeau</a></div><div class="text"><a href="http://www.florilege-de-soie.com" target="_blank" title="Carré soie">Carré de soie</a></div><div class="text"><a href="http://www.arbioressence.com"> Boutique Bien Etre </a> : Arbioressence vous propose la vente en ligne de nombreux produits naturels et Produits Bio pour le bien être.</div><div class="tags"><h2>Tags</h2><ul><li><a href="http://www.aromateasy.net/tag/frais%20de%20port%20gratuits" class="tag50">frais de port gratuits</a> </li><li><a href="http://www.aromateasy.net/tag/Sensory%20Perfection" class="tag50">Sensory Perfection</a> </li><li><a href="http://www.aromateasy.net/tag/Fragrances" class="tag50">Fragrances</a> </li><li><a href="http://www.aromateasy.net/tag/aromateasy" class="tag100">aromateasy</a> </li><li><a href="http://www.aromateasy.net/tag/cosmetic%20academy" class="tag100">cosmetic academy</a> </li></ul><p><strong><a href="http://www.aromateasy.net/tags">Tous les tags</a></strong></p></div><div class="text"><h2>ANNUAIRES et MAGAZINES</h2><a href="http://www.naturo-mag.com/" target="_blank" title="e-commerce et boutique en ligne sur E-Komerco" ><img border=0 src="http://www.aromateasy.net/pub/Bouton120x60.gif" alt="Naturo-mag.com; bulletin d'informations au naturel"></a></div><div class="text"><a href="http://www.e-komerco.fr/aromateasy-p-2928.html" target="_blank" title="E-commerce présent sur E-Komerco" ><img border=0 src="http://www.e-komerco.fr/pub/e-komerco.jpg" alt="Boutique en ligne Cosmétique - Santé et beauté sur E-Komerco"></a></div>  </div> <!-- End #blognav -->
  
  <div id="blogextra">
      </div> <!-- End #blogextra -->
</div>

</div> <!-- End #wrapper -->

<div id="footer">
  <p id="footerContent"><br/>Aromat'Easy Route de Betchat 31260 MARSOULAS FRANCE  - <a href='/contact'><script type="text/javascript">document.write (String.fromCharCode(99,111,110,116,97,99,116,64,97,114,111,109,97,116,101,97,115,121,46,110,101,116));</script></a> - Téléphone : 09 74 62 11 05<br/> 42Stores : <a href="http://www.42stores.com">boutique sur Internet</a></p>
</div>

<!-- ligne importante à ne jamais supprimer / do not delete -->
			<script type="text/javascript">
				$(function(){
				
					$('#advancedSearch').find('select').change(function(){
						if($(this).hasClass('cat')){
							var s=$(this).attr('name');
							s=s.substring(5,s.length-1);
							$('#change_cat_value').val(s);
						}
						$('#advancedSearch').submit();
					});
					
					$('#clean_search').click(function(){
						$('.cleanable').val('');
						$('#advancedSearch').submit();
					});
				});
			</script>
				<script type="text/javascript">
			$(function(){
				$('#hideSearch').hide();
				
				var lb_settings = {
					loader_img : '/?pf=lightbox/img/loader.gif',
					prev_img   : '/?pf=lightbox/img/prev.png',
					next_img   : '/?pf=lightbox/img/next.png',
					close_img  : '/?pf=lightbox/img/close.png',
					blank_img  : '/?pf=lightbox/img/blank.gif'
				};
				
				// reg exp pour nettoyer les requêtes, cf méthode "clean"
				var exp1=new RegExp("^(\\s+)|(\\s+)$","g");
				var exp2=new RegExp("(\\s+)","g");	
				var exp3=new RegExp("\\s(\\S{1,2})\\s","g");
				var exp4=new RegExp("[\\x00-\\x2F\\x3A-\\x40\\x5b-\\x60\\x7B-\\x7E\\xA0-\\xBF]","g");
				
				// verrou pour n'envoyer qu'une requête ajax à la fois
				var lock=false;
				// temps au moment du dernier keyUp
				var lastKeyUp= new Date().getTime();
				// tableau contenant les barres de recherche
				var searchBars= new Array();
				// barre de recherche ayant le focus
				var focus;
				// dernière valeur de recherche envoyée
				var lastQ=clean('');
				// savoir si on est dans un "contexte" de recherche
				var ctx_search=false;
				// numéro de la page de résultat
				var page=1;
				// contenu de la page qu'on avait avant la recherche, pour pouvoir la réafficher
				var previousPage;

				var timerOn=false;
				
				
				// on bind !
				if(ctx_search){
					$("#o").change(ajax);
					binds();
				}
				
				function binds(){
					$("#fuzzy").click(function(){
						$('#q')[0].value=$(this).text();
						$('#q').triggerHandler('keyup');
					});
					
					$('.page_link').each(bindPage);
					$('#ajaxSearchResults').find('a[href$=.jpg],a[href$=.jpeg],a[href$=.png],a[href$=.gif],a[href$=.JPG],a[href$=.JPEG],a[href$=.PNG],a[href$=.GIF]').modalImages(lb_settings);

				}
				
				// évite de lancer plusieurs timer en même temps				
				function initTimer(){
					if(!timerOn){
						timerOn=true;
						timer();
					}
				}
				//vérifie s'il y a besoin d'envoyer une requête ajax
				function timer(){
					var delta=new Date().getTime()-lastKeyUp;
					if(!lock && delta>250){
						var valeur = clean(focus.value);
						if(lastQ!=valeur){
							for(var bar in searchBars){
								searchBars[bar].value=focus.value;
							}
							if(valeur.length>2){
								lastQ=valeur;
								ajax();
							}
						}
						timerOn=false;
					}
					else
						setTimeout(timer,100);
				}
				
						
				function clean(string){
					return (' '+string+' ').replace(exp4,'  ').replace(exp3,'').replace(exp1,'').replace(exp2,' ');
				}
				
				// enregistre le 'time' de l'appuie sur la touche, et synchronise les "value" des barres de recherche
				function registerKeyUp(){
					lastKeyUp = new Date().getTime();
					focus=this;
					initTimer();
				}
				
				// technique pour trouver toutes les barres de recherche malgré leur même id
				$('input').each(function(){
					if(this.id=='q'){
						$(this).bind('keyup',registerKeyUp);
						searchBars.push(this);
					}
				});
				
				// envoie les requêtes ajax
				function ajax(){
					lock=true;
					opacity(50);
					$.get('http://'+window.location.host+'/instantsearch',
					{q: lastQ, o : ($('#o').length>0 ? $('#o')[0].value : "pertinence ASC")},
					function(data){
						// pas dans un contexte de recherche, on retire donc l'ancien contenu, pour le remplacer par l'entête de la recherche et les résultats
						if(!ctx_search){
							ctx_search=true;
							previousPage=$("#content").children().clone();
							$("#content").empty();
							$("#content").append($(data));
							var mainBar=$("#content").find("#q");
							if(mainBar.length==1){
								mainBar.bind('keyup',registerKeyUp);
								searchBars.push(mainBar[0]);
								mainBar[0].value=focus.value;
							}
							$("#o").change(ajax);
							showButton();
						}
						else{ //déjà en recherche, on remplace juste les résultats
							$("#content").find("#ajaxSearchResults").replaceWith($(data).parent().find("#ajaxSearchResults"));
						}
						opacity(100);							
						// on bind les liens pour changer de page, et la page courante revient à 1
						binds();
						page=1;
						lock=false;
					});
				}
				
				function opacity(value){
					var ie=(value==100)? 'none' :  'alpha(opacity='+value+')' ;
					$("#ajaxSearchResults").css({opacity : value/100, filter : ie });
				}
				
				// changement de page via ajax
				function movePage(newpage){
					page=parseInt(newpage);
					opacity(50);
					$.get('http://'+window.location.host+'/instantsearch',
						{q: lastQ, page: page, o : ($('#o').length>0 ? $('#o')[0].value : "pertinence ASC")},
						function(data){
							$("#content").find("#ajaxSearchResults").replaceWith($(data).parent().find("#ajaxSearchResults"));
							opacity(100);
							binds();
						});
				}
		
				
				//lie les liens pour la pagination
				function bindPage(){
				$(this).bind('click',function(){
					if($(this).hasClass('previous'))
						movePage(page-1);
					else if($(this).hasClass('next'))
						movePage(page+1);
					else
						movePage(this.text);
				});
				}
				
				// bouton "retour" pour réafficher le contenu d'avant la recherche (uniquement si ajax)
				function showButton(){
					$('#hideSearch').show();
					$('#hideSearch').bind('click',function hideSearch(){
						$("#content").empty();
						$("#content").append(previousPage);
						ctx_search=false;
					});
				}

			});
		</script>
		</div><div class="jqmWindow" id="cart-review"></div> <!-- End #page -->
</body>
</html>
