function setGalerie(numpage)
{
var ListLength=new Array;
ListLength[1]=5;
ListLength[2]=7;
ListLength[3]=5;
ListLength[4]=8;
ListLength[5]=1;
newcode='';

for (cpt=1; cpt<=ListLength[numpage]; cpt++)
{
   bigPhoto='img/0' + numpage + 'B0' + cpt + '.jpg';
   smallPhoto='img/0' + numpage + 'S0' + cpt + '.jpg';
   newcode+='<img src="' + smallPhoto + '" alt="' + bigPhoto + '" onClick="setFullScreen(\'' + bigPhoto + '\',\'' + bigPhoto + '\');">';
};
document.getElementById('blocmenudroite').innerHTML=newcode;
};

function setFullScreen(image,legende)
{
window.open(image);
};