/**
 *  fonction de redirections vers le contenu produits
 */
 
function gotopage(id_editor){
	document.location.href = "produits.php?id_editor="+id_editor;
	
}
function gotoArticlePage(id_article,id_editeur){
	document.location.href = "produits.php?id_article="+id_article+"&id_editor="+id_editeur;
}
function gotopage2(id_editor){
	document.location.href = "../produits.php?id_editor="+id_editor;
	
}
