function Pair(n)
{
   if(n/2 == Math.round(n/2)) return true;
   else return false;
}


var img = ["http://www.35mm.fr/ce2/img/01.JPG", "http://www.35mm.fr/ce2/img/02.JPG" , "http://www.35mm.fr/ce2/img/00.JPG", "http://www.35mm.fr/ce2/img/viseur3.JPG" , "http://www.35mm.fr/ce2/img/09.JPG" , "http://www.35mm.fr/ce2/img/karine01.JPG" , "http://www.35mm.fr/ce2/img/06.JPG" , "http://www.35mm.fr/ce2/img/filtre5-5.JPG"];  
var n = Math.floor(Math.random()*img.length);
if(Pair(n) == 0){document.write('<img src='+img[n]+' style="margin-top:15px;border:1px solid white;"width=290px height=460px>');}
else{document.write('<img src='+img[n]+' style="margin-top:105px;border:1px solid white;" width=460px height=290px>');}