document.write('<A CLASS=prevlink HREF="javascript:NextPrev(\'P\',this);" OnMouseOver="window.status=\'Aller &agrave; la pr&eacute;c&eacute;dente photo de ce feu devant le Louvre\'; return true;"><IMG SRC="../../images/ARROWP.GIF" ALT="Go to the previous picture of the fire in front of the Louvre." WIDTH=79 HEIGHT=27 BORDER=0 ALIGN=middle></A> <A CLASS=homelink HREF="../paris101.htm" OnMouseOver="window.status=\'Aller &agrave; la premi&egrave;re photographie dans cette serie\'; return true;"><SUP><IMG SRC="../../images/HOME.GIF" ALT="Go to the first pictures in this series." WIDTH=81 HEIGHT=27 BORDER=0 HSPACE=8 ALIGN=middle></SUP></A> <A CLASS=nextlink HREF="javascript:NextPrev(\'N\',this);" OnMouseOver="window.status=\'Aller &agrave; la prochaine photo de ce Peugeot flambant\'; return true;"><IMG SRC="../../images/ARROWN.GIF" ALT="Go to the next picture of this Peugeot in flames." WIDTH=79 HEIGHT=26 BORDER=0 ALIGN=middle></A>');
// My deepest thanks go out to James Alarie, jalarie@flint.umich.edu, http://spruce.flint.umich.edu/~jalarie/, for writing this script for me!
var np_links = new Array(
"index.htm",
"louvreburningcar02.htm",
"louvreburningcar03.htm",
"louvreburningcar04.htm",
"louvreburningcar05.htm",
"louvreburningcar06.htm",
"louvreburningcar07.htm",
"louvreburningcar08.htm",
"louvreburningcar09.htm",
"louvreburningcar10.htm",
"louvreburningcar11.htm");
function NextPrev(Which,This) {
Loop='yes';
URL=document.location.href;
ix1=URL.indexOf('?');
if (ix1 > -1) { URL=URL.substring(0,ix1); }
ix1=URL.lastIndexOf('/');
if (ix1 > -1) { URL=URL.substring(ix1+1); }
links_len=np_links.length;
for (ix1=0; ix1<links_len; ix1++) {
link=np_links[ix1];
if (link == URL) {
if (Which == 'N') {
ix2=ix1*1 + 1;
if (ix2 >= links_len) {
if (Loop == 'no') {
alert('This is the last picture in the series on the burning Peugeot.');
if (This.href) { This.href=URL; }
return false;
}
ix2=0;
}
locn=np_links[ix2];
document.location=locn;
if (This.href) { This.href=locn; }
return false;
} else {
ix2=ix1 - 1;
if (ix2 < 0) {
if (Loop == 'no') {
alert('Beginning of list.');
if (This.href) { This.href=URL; }
return false;
}
ix2=links_len-1;
}
locn=np_links[ix2];
document.location=locn;
if (This.href) { This.href=locn; }
return false;
}
}
}
}

var timer = null
function slideshow() { NextPrev('N',this); }
timer=setTimeout('slideshow()',240000)

function ejs_code_clavier(keyStroke) {
ejs_code_eventChooser = (!document.all) ? keyStroke.which : event.keyCode;
ejs_code_which = String.fromCharCode(ejs_code_eventChooser);
if (ejs_code_which =='+' ){ NextPrev('N',this); }
else if (ejs_code_which == '-' ){ NextPrev('P',this); }
return true
}
document.onkeypress = ejs_code_clavier;