   function open_info() {
      document.getElementById('popup_info').style.display = 'block';
   }
   function close_info() {
      document.getElementById('popup_info').style.display = 'none';
   }
   var loc = String(document.location.href);
   if(loc.indexOf('client_nouveau.php?pp=prof')!=-1) {
      document.writeln('<div style="position:absolute;z-index:900;width:100%;margin:auto;background:(\'../img/empty.gif\') repeat-xy top left;top:0px;left:0px;text-align:center;font-family:verdana,sans-serif;font-size:10px;" id="popup_info">');
      document.writeln('   <div style="background-color:#fff;margin:200px auto 630px;width:300px;border:3px solid #f00;">');
      document.writeln('      <div style="text-align:center;padding:5px 10px;font-size:12pt;font-weight:bold;color:#fff;background-color:#3058d5;">');
      document.writeln('         Tres important');
      document.writeln('      </div>');
      document.writeln('      <div style="padding:5px;text-align:left;">');
      document.writeln('         Votre demande d\'inscription est soumise a validation par notre Service Clients.<br /><br />');
      document.writeln('         Des reception du mail de confirmation, vous pourrez acceder a votre compte et, le cas echeant, retrouver votre panier.');
      document.writeln('      </div>');
      document.writeln('      <div style="text-align:center;padding:5px;">');
      document.writeln('         <input type="button" value="OK" onClick="javascript:close_info();" />');
      document.writeln('      </div>');
      document.writeln('   </div>');
      document.writeln('</div>');
   }
   else if(false && loc.indexOf('order_2.php')!=-1) {
      document.writeln('<div style="position:absolute;z-index:900;width:100%;margin:auto;background:(\'../img/empty.gif\') repeat-xy top left;top:0px;left:0px;text-align:center;font-family:verdana,sans-serif;font-size:10px;" id="popup_info">');
      document.writeln('   <div style="background-color:#fff;margin:250px auto 630px;width:300px;border:3px solid #369;">');
      document.writeln('      <div style="padding:10px;text-align:left;">');
      document.writeln('         Notre Service Expéditions sera fermé du 08 au 23 août 2009. Votre commande ne pourra pas être traitée durant cette période. Merci de votre compréhension.');
      document.writeln('      </div>');
      document.writeln('      <div style="text-align:center;padding:5px;">');
      document.writeln('         <input type="button" value="OK" onClick="javascript:close_info();" />');
      document.writeln('      </div>');
      document.writeln('   </div>');
      document.writeln('</div>');
   }
   else {
      document.writeln('<div style="display:none;position:absolute;z-index:900;width:100%;margin:auto;background:(\'../img/empty.gif\') repeat-xy top left;top:0px;left:0px;text-align:center;font-family:verdana,sans-serif;font-size:10px;" id="popup_info">');
      document.writeln('   <div style="background-color:#fff;margin:250px auto 630px;width:300px;border:3px solid #369;">');
      document.writeln('      <div style="padding:10px;text-align:left;">');
      document.writeln('         Un article a été ajouté au panier...');
      document.writeln('      </div>');
      document.writeln('      <div style="text-align:center;padding:5px;">');
      document.writeln('         <input type="button" value="OK" onClick="javascript:close_info();" />');
      document.writeln('      </div>');
      document.writeln('   </div>');
      document.writeln('</div>');
   }
