function gotoproduit(idprod){
	document.frm_gotoproduit.IdProduit.value = idprod;
	document.frm_gotoproduit.submit();
}
function loadpage(idpage){
	if(idpage == 0){
		document.fr_moteur.action = "liste.cfm";
	}
	else{
		document.fr_moteur.action = "produit.cfm";
	}
}
function gotoformulaire(id){
	document.frm_gotoformulaire.IdArticle.value = id;
	document.frm_gotoformulaire.submit();
}