PhotoArray = new Array();
DescrArray = new Array();
PhotoCount = 3;
CurrentPhoto = 1;
PhotoArray[1] = '21600128_632973909755625000.jpg';
DescrArray[1] = '';
PhotoArray[2] = '21600128_632973910038593750.jpg';
DescrArray[2] = '';
PhotoArray[3] = '21600128_632973909921562500.jpg';
DescrArray[3] = '';
function onBigClick(){
window.open('http://perso.mixad.com/pa/annonce/annonce_detail_photo.asp?nom_photo=' + PhotoArray[CurrentPhoto] + '','photokirulez', 'width=10, height=10, location=0, menubar=0, resizable=1,scrollbars=1, status=0, toolbar=0, scroll=auto');
}

function photo_pred()
{
if (CurrentPhoto == 1)
{
CurrentPhoto = PhotoCount + 1;
}
CurrentPhoto--;
document.getElementById("IDPHOTO").src="/Photos/THUMBS/" + PhotoArray[CurrentPhoto];
document.getElementById("IDDESCR").innerHTML = DescrArray[CurrentPhoto];
document.getElementById("photo_nav").innerHTML = CurrentPhoto + "/" + PhotoCount; 
document.getElementById("IDBIGCLICK").onclick = onBigClick;
}
function photo_next()
{
if (CurrentPhoto == PhotoCount)
{
CurrentPhoto = 0;
}
CurrentPhoto++;
document.getElementById("IDPHOTO").src="/Photos/THUMBS/" + PhotoArray[CurrentPhoto];
document.getElementById("IDDESCR").innerHTML = DescrArray[CurrentPhoto];
document.getElementById("photo_nav").innerHTML = CurrentPhoto + "/" + PhotoCount;
document.getElementById("IDBIGCLICK").onclick = onBigClick;
}


