function afficherDetailArticle(type, id_article)
{
	var popDetailArticle='';
	popDetailArticle = window.open("../avipi/news/detail_article.php?type="+type+"&id_article="+id_article, "", "Height=400px,Width=640px,scrollbars=1,status=0");
	popDetailArticle.focus();
}

function afficherFormEnvoyerArticle(cat, id_article, lien)
{
	var popEnvoyerArticle='';
	if (id_article!=null && id_article!='undefined' && id_article!=''){
		popEnvoyerArticle = window.open("../avipi/news/article_envoyer_formulaire.php?cat="+cat+"&id_article="+id_article+"&lien="+lien, "envoyeraunami", "Width=595px,Height=540px,scrollbars=0,status=0");
		popEnvoyerArticle.focus();
	}
}