function affichePopUp(nom_popup){
	maximize(document.getElementById('BgPopup'));
	document.getElementById(nom_popup).style.display='block';
	
	// on enleve les select
	var x = document.getElementsByTagName("select");
	for (i = 0; i < x.length; i++) {
	   x[i].style.display = "none";
	}
	
	return false;
}

function affichePopUpArchives(nom_popup, lien){
	maximize(document.getElementById('BgPopup'));
	
	var curleft = curtop = 0;
	obj = document.getElementById(lien);
	if (obj.offsetParent) {
		do {
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
	}
	
	document.getElementById(nom_popup).style.top = (curtop - 300) + 'px';
	document.getElementById(nom_popup).style.display='block';
	
	// on enleve les select
	var x = document.getElementsByTagName("select");
	for (i = 0; i < x.length; i++) {
	   x[i].style.display = "none";
	}
	
	return false;
}

function affichePopUpLook(){
	maximize(document.getElementById('BgPopup'));
	document.getElementById('contenu_popup').style.display='block';
	return false;
}

function cachePopUp(nom_popup){
	document.getElementById(nom_popup).style.display='none';
	document.getElementById('BgPopup').style.display='none';
	
	// on remet les select
	var x = document.getElementsByTagName("select");
	for (i = 0; i < x.length; i++) {
	   x[i].style.display = "block";
	}
	return false;
}

function modifierVisuel(img){
	url = img.src;

	document.getElementById('img_zoom330').src = img.src.replace('/img_80', '/img_355');
	document.getElementById('img_zoom700').src = img.src.replace('/img_80', '/img_700');
} 

function modifierVisuelLook(url){
	document.getElementById('img_centrale_look').src = url;
	return false;
} 

function afficheGuide(id, id_onglet){
	for(i=0; i<12; i++){
		if(i!=id){
			document.getElementById("onglet_contenu"+i).className = "hide";
		}else{
			document.getElementById("onglet_contenu"+i).className = "";
		}
	}
	
	for(j=1; j<7; j++){
		if(j!=id_onglet){
			document.getElementById("onglet"+j).className = "";
		}
	}
	
	document.getElementById("onglet"+id_onglet).className = "selected"; 
	
	return false;
}

/*function checkFormEnvoiMail(test){
		formulaire = document.getElementById(test);
		
		var mail = formulaire.mail1.value;
		if(mail==''){
			alert("Le champ 'Votre e-mail' est obligatoire");
			return false;
		}else{
			if(mail.isMailAddr()==false){
				alert("L'adresse e-mail saisie est invalide.");
			return false;
			}
		}
		
		if (formulaire.nom1.value=='') {
			alert("Le champ 'Votre nom' est obligatoire."); 
			return false;
		}
		
		if (formulaire.prenom1.value=='') {
			alert("Le champ 'Votre prenom' est obligatoire."); 
			return false;
		}
		
		var mail = formulaire.mail2.value;
		if(mail==''){
			alert("Le champ 'Son e-mail' est obligatoire");
			return false;
		}else{
			if(mail.isMailAddr()==false){
				alert("L'adresse e-mail saisie est invalide.");
			return false;
			}
		}
		
		if (formulaire.nom2.value=='') {
			alert("Le champ 'Son nom' est obligatoire."); 
			return false;
		}
		
		if (formulaire.prenom2.value=='') {
			alert("Le champ 'Son prenom' est obligatoire."); 
			return false;
		}
		
		if (formulaire.message.value=='') {
			alert("Le champ 'Message' est obligatoire."); 
			return false;
		}
	return true;
}*/