// ignore les erreurs
window.onerror=function () {return true;}

// --- Fonctions ---

//  barre de Statut
//window.defaultStatus="Meukow Cognac";

function POPUP(URL,Width,Height,Varform,Toolbar,Scrollbars,Location,Statusbar,Menubar,Resizable,Left,Top) {
day = new Date();
id = day.getTime();

if(Width=='')      {Width=400;}
if(Height=='')     {Height=20;}
if(Toolbar=='')    {Toolbar=0;}
if(Scrollbars=='') {Scrollbars=0;}
if(Location=='')   {Location=0;}
if(Statusbar=='')  {Statusbar=0;}
if(Menubar=='')    {Menubar=0;}
if(Resizable=='')  {Resizable=0;}


Left=document.x;
Top=document.y;
	
if(Left=='')  {Left=100;}
if(Top =='')  {Top=100;}

eval("page" + Varform + " = window.open(URL, '" + Varform + "', 'toolbar="+Toolbar+",scrollbars="+Scrollbars+",location="+Location+",statusbar="+Statusbar+",menubar="+Menubar+",resizable="+Resizable+",width="+Width+",height="+Height+",left = 100,top = 100');");
}


// Verification de l'age---------------------------------------------------


var Pays  = new Array();
var Ages  = new Array();

function AgeSelect(){
	
	var listePays = "Afghanistan,Albania,Algeria,Andorra,Angola,Antigua and Barbuda,Argentina,Armenia,Australia,Austria,Azerbaidjan,Bahamas,Bahrain,Bangladesh,Barbados,Belarus,";
	listePays += "Belgium,Belize,Benin,Bhutan,Bolivia,Bosnia and Herzegovina,Botswana,Brazil,Brunei Darussalam,Bulgaria,Burkina Faso,Burundi,Cambodia,Cameroon,Canada,";
	listePays += "Cape Verde,Central African Republic,Chad,Chile,China,Colombia,Comoros,Congo,Costa Rica,Cote d Ivoire,Croatia ,Cuba,Cyprus,Czech Republic,DR Congo,Denmark ,";
	listePays += "Djibouti,Dominica,Dominican Republic,East Timor,Ecuador,Egypt,El Salvador,Equatorial Guinea,Eritrea,Estonia,Ethiopia,Fiji,Finland ,France,Gabon,Gambia,Georgia,";
	listePays += "Germany,Ghana,Greece,Grenada,Guatemala,Guinea,Guinea-Bissau,Guyana,Haiti,Honduras,Hong Kong,Hungary,Iceland,India,Indonesia,Iran,Iraq,Ireland,Israel,Italy,Jamaica,";
	listePays += "Japan,Jordan,Kazakhstan,Kenya,Kiribati,Kuwait,Kyrgyzstan,Lao PDR,Latvia,Lebanon,Lesotho,Liberia,Libya,Liechtenstein,Lithuania,Luxembourg,Macedonia,Madagascar,Malawi,";
	listePays += "Malaysia,Maldives,Mali,Malta,Marshall Islands,Mauritania,Mauritius,Mexico,Micronesia,Moldova,Monaco,Mongolia,Morocco,Mozambique,Myanmar,Namibia,Nauru,Nepal,Netherlands,";
	listePays += "New Zealand,Nicaragua,Niger,Nigeria,North Korea,Norway,Oman,Pakistan,Palau,Panama,Papua New Guinea,Paraguay,Peru,Philippines,Poland,Portugal,Qatar ,Romania,Russia,";
	listePays += "Rwanda,Saint Kitts and Nevis,Saint Lucia,Saint Vincent and the Grenadines,Samoa,San Marino,Sao Tome and Principe,Saudi Arabia,Senegal,Serbia and Montenegro,Seychelles,";
	listePays += "Sierra Leone,Singapore,Slovakia,Slovenia,Solomon Islands,Somalia,South Africa,South Korea,Spain,Sri Lanka,Sudan,Suriname,Swaziland,Sweden,Switzerland,Syria,";
	listePays += "Taiwan,Tajikistan,Tanzania,Thailand,Togo,Tonga,Trinidad and Tobago,Tunisia,Turkey,Turkmenistan,Tuvalu,Uganda,Ukraine,United Arab Emirates,United Kingdom,Uruguay,";
	listePays += "USA,Uzbekistan,Vanuatu,Venezuela,Vietnam,Yemen,Zambia,Zimbabwe";
	
	var listeAges ="18,18,18,18,18,18,18,18,18,18,18,18,21,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,19,18,18,18,21,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,";
	listeAges += "18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,25,21,18,18,18,18,18,18,20,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,";
	listeAges += "18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,21,18,18,18,18,20,18,18,18,18,18,18,18,18,18,18,18,21,18,18,18,18,18,18,18,18,18,18,21,18,18,19,18,18,18,18,";
	listeAges += "18,18,18,18,18,18,18,20,18,18,18,18,18,18,18,18,18,21,18,18,21,18,18,18,18,18,18,18";

	Pays = listePays.split(',');
	Ages = listeAges.split(',');
}


function AJOUT_OPTION(idSelect,valTexte,valOption){
	var affOption = document.createElement('OPTION');
	affOption.value = valOption;
	affOption.text = valTexte;
	try {document.getElementById(idSelect).add(affOption, 0);} 
	catch(e) {document.getElementById(idSelect).add(affOption, null);}
}

function InitLignAlert(){
	document.forms['VerifAge'].textalertfr.value = ' ';
	document.forms['VerifAge'].textalerten.value = ' ';
}

function RemplirListeAge(){
	var MyDate = new Date;
	var annee_Courante = MyDate.getFullYear();
		document.forms['VerifAge'].Annee.length = 101;
	
	for (var i = 0 ; i < 101 ; i++){
		document.forms['VerifAge'].Annee.options[i].value = i;
		document.forms['VerifAge'].Annee.options[i].text =  annee_Courante - i ;
	}

	document.forms['VerifAge'].Annee.options[0].text = 'Choose a year...';
	document.forms['VerifAge'].Annee.options.selectedIndex =0;
}

function RemplirListePays(){
	var len_Pays = Pays.length;
	
	if (navigator.appName == "Microsoft Internet Explorer"){
		for (var i = len_Pays -1; i > 0 ; i--){
			AJOUT_OPTION('Pays',Pays[i],i);
		}
		AJOUT_OPTION('Pays','Select country...',0);
	}
	else{
		AJOUT_OPTION('Pays','Select country...',0);
		for (var i = 1; i < len_Pays ; i++){
			AJOUT_OPTION('Pays',Pays[i],i);
		}
		
		
	
	}
		
	document.forms['VerifAge'].Pays.options.selectedIndex = 0;
}



function VerifAges(){
	var Age_Limit = Ages[document.forms['VerifAge'].Pays.options.selectedIndex];
	var MyDate = new Date;
	var annee_Courante = MyDate.getFullYear();
	var annee_select = document.forms['VerifAge'].Annee.options[document.forms['VerifAge'].Annee.options.selectedIndex].text;
	var pays_select = document.forms['VerifAge'].Pays.options[document.forms['VerifAge'].Pays.options.selectedIndex].text;
	//Si 2005 (l'annee courante) - Date de naissance <= Age_Limit : Interdit 
	if (( annee_Courante - Age_Limit ) <  annee_select){
		document.forms['VerifAge'].textalerten.value = "Sorry you are not allowed to enter this site";
		document.forms['VerifAge'].textalertfr.value = "Désolé vous n'êtes pas autoriser à entrer sur ce site";
		setTimeout("window.location.href = 'http://www.centurycouncil.org'",3500);
	}
	else {
		if((document.forms['VerifAge'].Pays.options.selectedIndex == 0)||(document.forms['VerifAge'].Annee.options.selectedIndex ==0)){
			document.forms['VerifAge'].Pays.focus();
		}
		else {
			/*if( pays_select=="USA" ){
				window.location.href = "http://www.meukowusa.com";
			}else{*/
				window.location.href = "index.php";
			//}
		}
	}
}


function bla(){
alert ('bla');
}


//------------------------------------------------------


//-->


