<!--
var          w = 1;
var      error = 0;
var     params = window.document.location.href.substr((window.document.location.href.indexOf("?")+1));
var tab_params = params.split("&");

for (i=0; i<tab_params.length;i++) {
  tab_params[i] = tab_params[i].split("=");
  if(tab_params[i][0] == 'w') { w = tab_params[i][1]; }
}

if(w == 1) { warning(lang,exit); }

// Si tout s'est bien passé ...
if(!(error)) {
  setTimeout('document.location = p +"?w="+w+"&lg="+lang+"&nk="+nk+"&tk="+tk+"&wm="+wm', 200);
}
// -------------------------------- FONCTIONS ----------------------------------
function warning(lang,exit) {
  var msg  = new Array;
  msg['fr'] = "ATTENTION : SITE PORNOGRAPHIQUE RESERVE AUX MAJEURS DE PLUS DE 18 ANS\n\n" + 
              "Ce site Internet est réservé à un public majeur et averti et est conforme\n" + 
              "à toutes les règlementations françaises en vigueur. Il contient des textes,\n" + 
              "des photos et des vidéos classées X qui peuvent être choquantes pour\n" + 
              "certaines sensibilités. \n\n" + 
              "CLIQUEZ SUR OK POUR CONTINUER, ANNULER POUR QUITTER.\n\n";
  msg['es'] = "ATENCIÓN : SITIO PORNOGRAFICO RESERVADO PARA MAYORES DE 18 AÑOS\n\n" + 
              "Este sitio internet está reservado a un público mayor y conciente y está en conformidad\n" + 
              "con todas las reglamentaciones francesas en vigor. Contiene textos,\n" + 
              "fotos y videos clasificados X que pueden ser chocantes para\n" + 
              "ciertas sensibilidades. \n\n" + 
              "HAGA CLICK SOBRE OK PARA CONTINUAR,O ANULAR PARA ABANDONAR.\n\n";
  msg['it'] = "ATTENZIONE : SITO PORNOGRAFICO RISERVATO AD UN PUBBLICO MAGGIORENE DI PIU' DI 18 ANNI\n\n" + 
              "Questo sito Internet é riservato ad un pubblico maggiorenne e consenziente ed é conforme\n" + 
              "alla legislazione francese in vigore. Contiene dei testi,\n" + 
              "delle foto e dei videos classificati X che possono urtare certe\n" + 
              "sensibilità ed sopratutto vietato ai minori. \n\n" + 
              "CLICCATE OK PER CONTINUARE, ANNULLA PER USCIRE.\n\n"
  msg['en'] = "WARNING: PORNOGRAPHIC WEBSITE--STRICTLY PROHIBITED TO ANYONE UNDER 18\n\n" + 
              "This site is strictly reserved for a mature and cautioned audience as required\n" + 
              "by current law. This site contains X rated text, photographic and video images\n" + 
              "which might be found offensive.  \n\n" + 
              "CLICK OK TO ENTER, CANCEL TO LEAVE.\n\n"; 
  if (! confirm(msg[lang])) { error = 1; window.location = exit;}
}
// -->