function afficheFormMondiale(){
	document.getElementById('imageMondiale').style['display'] = 'none';
	document.getElementById('conteneurFormMondiale').style['display'] = 'block';
}
function verifFormMondiale(){
	var tabChampObligatoire = Array('nom', 'prenom', 'adresse', 'cp', 'ville', 'tel', 'mail', 'nomInstitut', 'adresseInstitut', 'cpInstitut', 'villeInstitut', 'surface', 'marquesDistribues');
	var vide = false;
		for(var i = 0; i < tabChampObligatoire.length; i++){
			if(document.getElementById(tabChampObligatoire[i]).value == ""){
		vide = true;
		
			}
		}
		if(vide == true){
			afficheChampVide();
		}else{
		verifMail();	
		}
}
function afficheChampVide(){
	document.getElementById("popupDhtmlContennu").innerHTML = trad147;
	document.getElementById('popupDhtml').style['height'] = document.getElementById('main').offsetHeight+100+'px';
	document.getElementById('popupDhtmlFond').style['height'] = document.getElementById('main').offsetHeight+'px';
	document.getElementById('popupDhtml').style['display'] = 'block';
	setTimeout("fermerPopup()",2000);
}
function verifMail(){
var mail = document.getElementById('mail').value;
var mailOK = 0;
//verification du mail//
var decoupeArobase = mail.split('@');
if(decoupeArobase[1] != undefined){
	var decoupePoint = decoupeArobase[1].split('.');
	if(decoupePoint[1] != undefined){
		mailOK = 1;
	}
}

/////
if(mailOK == 0){
	afficheConfirmationForm(trad320);
}else{
	insertForm();
}
}

function afficheConfirmationForm(trad){
		document.getElementById("popupDhtmlContennu").innerHTML = trad;
	document.getElementById('popupDhtml').style['height'] = document.getElementById('main').offsetHeight+100+'px';
	document.getElementById('popupDhtmlFond').style['height'] = document.getElementById('main').offsetHeight+'px';
	document.getElementById('popupDhtml').style['display'] = 'block';
	setTimeout("fermerPopup()",2000);
}
function fermerConfirmationForm()
	{
	document.getElementById('popupDhtml').style['display'] = 'none';
	}
function insertForm(){
	var tabChamp = Array('nom', 'prenom', 'adresse', 'cp', 'ville', 'tel', 'mail', 'nomInstitut', 'adresseInstitut', 'cpInstitut', 'villeInstitut', 'surface', 'marquesDistribues', 'dejaInstitut', 'typeOuverture', 'dateOuverture', 'nombreCabine');
	var donnees = "";
		for(var i = 0; i < tabChamp.length; i++){
		donnees += "&"+tabChamp[i]+"="+document.getElementById(tabChamp[i]).value;
		}
		donnees += "&langue="+id_langue;
		
	var xhr=null;
    if (window.XMLHttpRequest) { 
        xhr = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) 
    {
        xhr = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xhr.onreadystatechange = function() {
		if(xhr.readyState == 4){
			
		afficheConfirmationForm(trad321);
		initFormContact();
		}
	};
	
 xhr.open("POST", chemin+"/php/insertFormMondiale.php", true);
	xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8'); 
    xhr.send(donnees);
	
}
function initFormContact(){
		var tabChamp = Array('nom', 'prenom', 'adresse', 'cp', 'ville', 'tel', 'mail', 'nomInstitut', 'adresseInstitut', 'cpInstitut', 'villeInstitut', 'surface', 'marquesDistribues','typeOuverture', 'dateOuverture', 'nombreCabine');
	var donnees = "";
		for(var i = 0; i < tabChamp.length; i++){
		document.getElementById(tabChamp[i]).value = "";
		}
}
