/* ***** BEGIN LICENSE BLOCK *****
 * Copyright (c) 2007 S. B vblog BDS
 * reserved.
 *
 * You should have received a copy of the GNU General Public License
 * along with DotClear; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * ***** END LICENSE BLOCK ***** */

/*adult disclaimer for bds*/
function ScanCookie(variable) 
{ 
cook = document.cookie; 
variable += "="; 
place = cook.indexOf(variable,0); 
if (place <= -1) 
return("0"); 
else 
{ 
end = cook.indexOf(";",place) 
if (end <= -1) 
return(unescape(cook.substring(place+variable.length,cook.length))) ; 
else 
return(unescape(cook.substring(place+variable.length,end))); 
} 
} 

function CreationCookie(nom,valeur,permanent) 
{ 
if(permanent) 
{ 
dateExp = new Date(2020,11,11); 
dateExp = dateExp.toGMTString(); 
ifpermanent = '; expires=' + dateExp + ';'; 
} 
else 
ifpermanent = ''; 
document.cookie = nom + '=' + escape(valeur) + ifpermanent; 
} 

if(ScanCookie("dejapopup")==0) 
{ 
var msg="ATTENTION :\n"+"\n"+"SITE PORNOGRAPHIQUE RESERVE AUX MAJEURS DE PLUS DE 18 ANS\n"+"\n"+"Ce site Internet est r\351serv\351 \340 un public majeur et averti et est conforme\n"+"\340 toutes les r\350glementations fran\347aises en vigueur."+"\n"+"Il contient des textes,\n"+"des photos et des vid\351os class\351es X qui peuvent \352tre choquantes pour\n"+"certaines sensibilit\351s\n"+"\n"+"CLIQUEZ SUR OK POUR CONTINUER, ANNULER POUR QUITTER.\n\n" 
if(!confirm(msg)){window.top.popup=0;window.top.location.replace("http://www.google.fr");}; 
CreationCookie("dejapopup","oui",false) 
} 