function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="Images/IMG_2045zodCadre.jpg"
myimages[2]="Images/IMG_2029zodCadre.jpg"
myimages[3]="Images/IMG_2034zodCadre.jpg"
myimages[4]="Images/IMG_2039zodCadre.jpg"
myimages[5]="Images/IMG_2058zodCadre.jpg"
myimages[6]="Images/IMG_1621zodCadre.jpg"
myimages[7]="Images/IMG_2030zodCadre.jpg"
myimages[8]="Images/IMG_2037zodCadre.jpg"
myimages[9]="Images/IMG_2040zodCadre.jpg"
myimages[10]="Images/IMG_2028zodCadre.jpg"
myimages[11]="Images/IMG_2031zodCadre.jpg"
myimages[12]="Images/IMG_2038zodCadre.jpg"
myimages[13]="Images/IMG_2044zodCadre.jpg"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img width="232" height="192" src="'+myimages[ry]+'" border=0>')
//alert(ry);
}
function random_imgASPlink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="../Images/IMG_2045zodCadre.jpg"
myimages[2]="../Images/IMG_2029zodCadre.jpg"
myimages[3]="../Images/IMG_2034zodCadre.jpg"
myimages[4]="../Images/IMG_2039zodCadre.jpg"
myimages[5]="../Images/IMG_2058zodCadre.jpg"
myimages[6]="../Images/IMG_1621zodCadre.jpg"
myimages[7]="../Images/IMG_2030zodCadre.jpg"
myimages[8]="../Images/IMG_2037zodCadre.jpg"
myimages[9]="../Images/IMG_2040zodCadre.jpg"
myimages[10]="../Images/IMG_2028zodCadre.jpg"
myimages[11]="../Images/IMG_2031zodCadre.jpg"
myimages[12]="../Images/IMG_2038zodCadre.jpg"
myimages[13]="../Images/IMG_2044zodCadre.jpg"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img width="232" height="192" src="'+myimages[ry]+'" border=0>')
//alert(ry);
}