function controle_contact(pays,civilite,nom,prenom,fonction,entreprise,email,objet,message,telephone,fax,parametre,code_contact)
{
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{	
				document.getElementById('msg_contact').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	OAjax.send('pays='+pays+'&nom='+nom+'&prenom='+prenom+'&fonction='+fonction+'&entreprise='+entreprise+'&email='+email+'&objet='+objet+'&message='+message+'&telephone='+telephone+'&fax='+fax+'&parametre='+parametre+'&code_contact='+code_contact);
}

function controle_ajout_commentaire_article(pseudonyme,email,message,id_article,parametre)
{	
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{					
				document.getElementById('msg_action').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	OAjax.send('pseudonyme='+pseudonyme+'&email='+email+'&id_article='+id_article+'&message='+message+'&parametre='+parametre);
}

function controle_send_article(nom_expediteur,email_expediteur,email_recepteur,message,id_article,parametre)
{	
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{					
				document.getElementById('msg_action_send_article').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	OAjax.send('email_expediteur='+email_expediteur+'&email_recepteur='+email_recepteur+'&id_article='+id_article+'&message='+message+'&nom_expediteur='+nom_expediteur+'&parametre='+parametre);
}


function controle_ajout_commentaire_dossier_article(pseudonyme,email,message,id_dossier_article,parametre)
{	
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{					
				document.getElementById('msg_action').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	OAjax.send('pseudonyme='+pseudonyme+'&email='+email+'&id_dossier_article='+id_dossier_article+'&message='+message+'&parametre='+parametre);
}

function controle_send_dossier_article(nom_expediteur,email_expediteur,email_recepteur,message,id_dossier_article,parametre)
{	
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{					
				document.getElementById('msg_action_send_article').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	OAjax.send('email_expediteur='+email_expediteur+'&email_recepteur='+email_recepteur+'&id_dossier_article='+id_dossier_article+'&message='+message+'&nom_expediteur='+nom_expediteur+'&parametre='+parametre);
}


function controle_newsletter(email,parametre)
{	
	var OAjax;
	if (window.XMLHttpRequest) OAjax = new XMLHttpRequest();
	else if (window.ActiveXObject) OAjax = new ActiveXObject('Microsoft.XMLHTTP'); 
	OAjax.open('POST',"signin.php",true);
	OAjax.onreadystatechange = function()
	{
		if (OAjax.readyState == 4 && OAjax.status==200)
		{
			if (document.getElementById) 
			{					
				document.getElementById('msg_action_newsletter').innerHTML=OAjax.responseText;
			}
		}
	}
	OAjax.setRequestHeader('Content-type','application/x-www-form-urlencoded');
OAjax.send('email='+email+'&parametre='+parametre);
}
