//Actionner vers la page texte
function displaypagearticle(numpage,vIsapi){
	document.postertexte.PageArticle.value = numpage;
	if(vIsapi == 1){
		vURLComplet = document.URL.split("/");
		docURL = vURLComplet[vURLComplet.length-1];
		if (docURL.indexOf("-") == -1){
			tURL = docURL.split(".");
			vPage = tURL[0] + '-' + numpage + '.html';
		}
		else{
			tURL = docURL.split("-");
			vPage = tURL[0] + '-' + numpage + '.html';
		}
		document.postertexte.action = vPage;
	}
	document.postertexte.submit();
}

//Actionner vers la page articles
function gototextearticles(Idart,Idcah,vIsapi){
	document.frmarticle.IdArticle.value = Idart;
	document.frmarticle.IdCahier.value = Idcah;
	if(vIsapi == 1){
		document.frmarticle.action = 'article-' + Idart + '.html'
	}
	document.frmarticle.submit();
}
