var site = document.anneau.page.value;
var precedent;
var suivant;
var combien = 3;
var liste = new Array();

liste[0] = "http://gauche.netfirms.com"; //La Gauche Québécoise
liste[1] = "http://www.geocities.com/simonvallee/Politique.html"; //Page Politique
liste[2] = "http://iquebec.ifrance.com/nouvelordre/"; //Nouvel Ordre Libertaire
liste[3] = "http://gauche.netfirms.com/ridh"; //Réseau International pour les Droits Humains


var hasard = parseInt(Math.random() * combien, 10);

if(site == combien) suivant = 0;
else suivant = site - 1 + 2;

if(site == 0) precedent = combien;
else precedent = site - 1;

document.write('<A HREF="' + liste[precedent] + '" TARGET="_top">Précédent</A> - <A HREF="' + liste[suivant] + '" TARGET="_top">Suivant</A> - <A HREF="' + liste[hasard] + '" TARGET="_top">Au hasard</A> - <A HREF="http://gauche.netfirms.com/anneau.html" TARGET="_top">Liste</A>');