function _g(param_name)
{
	qstring = window.location.search.substring(1);
	allparams = qstring.split('&');
	for (j=allparams.length-1; j>=0; j--)
	{
		couple = allparams[j];
		couple = couple.split('=');
		if (couple[0] == param_name) return couple[1];
	}
	return false;
}

function in_array(needle, haystack)
{
	for (j=0; j<haystack.length; j++)
	{
		if (haystack[j] == needle) return true;
	}
	return false;
}

var lgs_arr = Array('fr','us','uk','it','es');

var lg = _g('lg'); 

if(typeof lg == 'undefined' || !in_array(lg,lgs_arr)) lg = 'fr';

var new_url_refus = 'http://www.google.fr';

if(lg == 'us'){
	msg = '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';
	new_url_refus = "http://www.google.com";
}
else if(lg == 'uk'){
	msg = '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';
	new_url_refus = "http://www.google.com";
}
else if(lg == 'it'){
	msg = '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';
	new_url_refus = "http://www.google.it";
}
else if(lg == 'es'){
	msg = 'CUIDADO : 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 PULSE EN ACEPTAR PARA CONTINUAR O CANCELAR PARA ABANDONAR.\n\n';
	new_url_refus = "http://www.google.es";
}
else{
	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\n';
	new_url_refus = "http://www.google.fr";
}

if (typeof url_refus == 'undefined') url_refus = new_url_refus;

//if (window.location.search.indexOf('w=0') == -1)
//if ( !(_g('w') == '0' || !_g('w')) )//default no alert

if ( !(_g('w') == '0') )//default alert enabled
{
	if((_g('fs') == 1)){
		alert_result = true;
	}else{
		if(typeof overite_alert == 'undefined'){
			alert_result = confirm(msg);
		}else{
			alert_result = true;
		}
	}

	if (alert_result)
	{
		if (window.location.href.match(/w=[\d]*/))
		{
			
			var new_url = window.location.href;
			new_url = new_url.replace(/w=[\d]*/, 'w=0');
			window.location = new_url;
		}
		else
		{
			glue = window.location.href.indexOf('?') == -1 ? '?' : '&';
			window.location.href += glue + 'w=0';
		}
	}
	else
	{
		window.location.replace(url_refus)
	}
}


