var livre=new Array ('index','f2','f3','f4','f5','f6','f7','f8','f9','f10','f11','f12','f13','f14');

var fichier=location.pathname;
var indice=0;

fichier=fichier.substring(fichier.lastIndexOf('\\')+1); //pour mode fichier de Windows!
fichier=fichier.substring(fichier.lastIndexOf('/')+1,fichier.length-4);

//Détermination de l'indice de la page courante
for (var i=0;i<livre.length ;i++)
	if (livre[i]==fichier) indice=i;

var precedant='';
var suivant='';

if (indice>0) precedant='<a href="'+livre[indice - 1]+'.htm"><img src="../../images/gauche.gif" alt="page précédante" border="0"></a>';
if (indice<livre.length-1) suivant='<a href="'+livre[indice + 1]+'.htm"><img src="../../images/droite.gif" alt="page suivante" border="0"></a>';


document.writeln('<TABLE WIDTH=100%>');
document.writeln('<TR><TD>');
document.write(precedant);
document.write('<A HREF=index.htm#toc><IMG SRC=../../images/toc.gif align=top WIDTH=26 HEIGHT=26 BORDER=0 ALT="Table des matières"></A>');
document.writeln(suivant);
document.writeln('<TD ALIGN=RIGHT>');
document.writeln('<A HREF=http://pages.ifrance.com><IMG SRC=../../images/accueil.gif WIDTH=20 HEIGHT=20 BORDER=0 ALIGN=MIDDLE></A> <A HREF=../../index.htm>Page d\'accueil</A> &gt; ');
document.writeln('<A HREF=../index.htm><IMG SRC=../../images/livres.gif WIDTH=20 HEIGHT=20 BORDER=0 ALIGN=MIDDLE>Bibliothèque</A> &gt;');
document.writeln('<A HREF=index.htm>L\'islam sans voile</A></TABLE>');
document.writeln('<HR>');

