
function appelFlash(movieName) {
	if (window.document[movieName]){
		return window.document.getElementById(movieName);
    }
	
    if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
    }
    else {
	    return document[movieName];
    }
} 


function afficherAlerteVideos(){
		
		cacherContact();
		
	   var alerte_video = new SWFObject("flash/alerte_video.swf", "alerteVideo", "520", "450", "9", "#ffffff");
	   alerte_video.addParam("wmode","transparent");
	   alerte_video.write("encart_alerte");
	   
	   //appelFlash("alerteVideo").initialize();
	   
	   
	   $('encart_alerte').style.display = 'block';
	   $('contenu_alerte').style.display = 'block';
	   
	   $('champ_alerte').style.visibility = 'visible';
		$('box1').style.visibility = 'visible';
		$('box2').style.visibility = 'visible';
		$('box3').style.visibility = 'visible';
		$('box4').style.visibility = 'visible';
		$('box5').style.visibility = 'visible';
		$('box6').style.visibility = 'visible';
		$('envoiAlerte').style.visibility = 'visible';
	   
	   $('champ_alerte').value = 'indiquez votre adresse e-mail...';
	   $('box1').checked=true;
	   $('box2').checked=true;
	   $('box3').checked=true;
	   $('box4').checked=true;
	   $('box5').checked=true;
	   $('box6').checked=true;
}

function cacherAlerte(){
	
	$('encart_alerte').innerHTML = '';
	$('encart_alerte').style.display = 'none';
	$('contenu_alerte').style.display = 'none';
}

function afficherContact(){
	
	cacherAlerte();
	
	
	var popup_contact = new SWFObject("flash/popup_contact.swf", "popupContact", "520", "450", "9", "#ffffff");
	   popup_contact.addParam("wmode","transparent");
	   popup_contact.write("encart_contact");
	   
	$('encart_contact').style.display = 'block';
	$('contenu_contact').style.display = 'block';
	
	$('contact_nom').value = '';
	$('contact_prenom').value = '';
	$('contact_adresse').value = '';
	$('contact_cp').value = '';
	$('contact_ville').value = '';
	$('contact_tel').value = '';
	$('contact_fax').value = '';
	$('contact_mail').value = '';
	$('contact_message').value = '';
	
}

function cacherContact(){
	
	$('encart_contact').innerHTML = '';
	$('encart_contact').style.display = 'none';
	$('contenu_contact').style.display = 'none';
}


function afficherCategsRecherche(){
	if($('categsRecherche').style.display == 'block'){
		$('categsRecherche').style.display = 'none';
	}
	else {
		$('categsRecherche').style.display = 'block';
	}
}

function rechercher(param){
	document.location.href='search.php?categ='+param+'&recherche='+$('champ_recherche').value;	
}

function envoiAlerte(){
	
	var verif = $('champ_alerte').value;
	
	if($('box1').checked==false && $('box2').checked==false && $('box3').checked==false && $('box4').checked==false && $('box5').checked==false && $('box6').checked==false){
		alert('Veuillez selectionner qu minimum une rubrique !');	
	}
	else if($('champ_alerte').value == '' || verif.indexOf("@")== -1 || verif.indexOf(".")== -1){
		alert('Veuillez saisir une adresse e-mail valide !');	
	}
	else {
		var myAjax = new Ajax.Request(
										'/ajax/insertionAlerte.php',
										{
											method:'post',
											parameters:'box1='+$('box1').checked+'&box2='+$('box2').checked+'&box3='+$('box3').checked+'&box4='+$('box4').checked+'&box5='+$('box5').checked+'&box6='+$('box6').checked+'&email='+$('champ_alerte').value,
											onComplete:okEnvoiAlerte
										}
									);
	}
	
}

function envoiContact(){
	
	var verif = $('contact_mail').value;
	
	if($('contact_nom').value=='' || $('contact_prenom').value=='' || $('contact_message').value=='' || $('contact_mail').value=='' || verif.indexOf("@")== -1 || verif.indexOf(".")== -1){
		alert('Veuillez remplir les champs obligatoires !');	
	}
	else {
		var myAjax = new Ajax.Request(
										'/form/form_send.php',
										{
											method:'post',
											parameters:'nom='+$('contact_nom').value+'&prenom='+$('contact_prenom').value+'&adresse='+$('contact_adresse').value+' '+$('contact_cp').value+' '+$('contact_ville').value+'&email='+$('contact_mail').value+'&telephone='+$('contact_tel').value+'&fax='+$('contact_fax').value+'&message='+$('contact_message').value,
											onComplete:okEnvoiContact
										}
									);

	}
	
}

function okEnvoiContact(){
	cacherContact();
	alert('Votre message a bien été envoyé.');	
}

function okEnvoiAlerte(){
	/*cacherAlerte();
	alert('Votre inscription a bien ete prise en compte.');	*/
	appelFlash("alerteVideo").retourInscription();
	$('champ_alerte').style.visibility = 'hidden';
	$('box1').style.visibility = 'hidden';
	$('box2').style.visibility = 'hidden';
	$('box3').style.visibility = 'hidden';
	$('box4').style.visibility = 'hidden';
	$('box5').style.visibility = 'hidden';
	$('box6').style.visibility = 'hidden';
	$('envoiAlerte').style.visibility = 'hidden';
	
	
	
}