function send_ajax(type,fichier,data){var xhr_object = null;if (window.XMLHttpRequest) xhr_object = new XMLHttpRequest();else if (window.ActiveXObject) xhr_object = new ActiveXObject("Microsoft.XMLHTTP");else {alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");return;}xhr_object.open(type, fichier, true);	xhr_object.onreadystatechange = function anonymous(){if (xhr_object.readyState == 4)eval(xhr_object.responseText);};xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded");xhr_object.send(data);}
function my_popup(titre,contenu){$('#my_popup_background').show();$('#my_popup').fadeIn();contenu_html='<h1><a href="javascript:void(0)" onclick="close_my_popup();" style="float:right" title="Fermer la fenetre"><img src="/common_skins/img/ico_false.gif" alt="fermer" /></a>'+titre+'</h1><br /><div id="contenu_my_popup">';contenu_html+='</div>';$('#my_popup').html(contenu_html+contenu);}
function close_my_popup(){$('#my_popup').fadeOut("slow");$('#my_popup').html(false);$('#my_popup_background').hide();}
function affiche_ville_code_postal(tag){$("#code_postal"+tag).keyup(function(){if ($("#code_postal"+tag).val().length>2){$("#code_postal"+tag+"_affiche_ville").html('<p class="center"><img src="/common_skins/img/loader.gif" alt="loader" title="Chargement en cours..." /></p>');send_ajax('post','/library/ajax/search_ville.php','tag='+tag+'&code_postal='+escape($("#code_postal"+tag).val()));}});}
var opts_fancybox = {'transitionIn':'elastic','transitionOut':'elastic','type': 'image','zoomOpacity':true,'overlayShow':true,'overlayOpacity':0.8,'overlayColor':'#000','centerOnScroll':true,'showNavArrows':false};
var opts_fancybox_produit = {'transitionIn':'elastic','transitionOut':'elastic','type': 'image','zoomOpacity':true,'overlayShow':true,'overlayOpacity':0.8,'overlayColor':'#000','centerOnScroll':true};
