if (!msg) msg="ATTENTION : SITE PORNOGRAPHIQUE RESERVE AUX MAJEURS DE PLUS DE 18 ANS\n\nCe 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,\ndes photos et des vidéos classées X qui peuvent être choquantes pour\ncertaines sensibilités. \n\nCLIQUEZ SUR OK POUR CONTINUER, ANNULER POUR QUITTER.\n\nWARNING : THIS WEBSITE CONTAINS NIDUTY AND IS ONLY INTENTED FOR ADULTS OVER THE AGE OF 18.\n\nThis web site contains nudity and depictions of graphic sexual material,\nincluding explicit depictions of sexual conduct and other materials for mature adult viewers only.\nThis web site contains age-restricted materials and access is limited to adults only.\nYou also acknowledge and agree that you are over 18 and not offended by nudity and explicit depictions of sexual activity.\n\nCLICK \"OK\" TO CONTINUE, \"CANCEL\" TO QUIT.\n\n"; 
if (!url_refus) url_refus = "http://www.google.com";

function get_c(name) 
{
	 var start = document.cookie.indexOf(name+"=");
	 var len = start+name.length+1;
	 if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
	 if (start == -1) return null;
	 var end = document.cookie.indexOf(";",len);
	 if (end == -1) end = document.cookie.length;
	 return unescape(document.cookie.substring(len,end));
}

function set_c(name,value,expires,path,domain,secure) 
{
	 var cookie = name + "=" +escape(value);
	 cookie += ( (expires) ? ";expires=" + expires.toGMTString() : "");
	 cookie += ( (path) ? ";path=" + path : "");
	 cookie += ( (domain) ? ";domain=" + domain : "");
	 cookie += ( (secure) ? ";secure" : "");
	 document.cookie = cookie; 
}

warning_shown = get_c('warning_shown');

if (!warning_shown)
{
	set_c('warning_shown', 1, 0);
	alert_result = confirm(msg);
	if (!alert_result)
	{
		window.location.replace(url_refus)
	}
}

