var photos=new Array()
var which=0
photos[0]="images/warschau_images/warschau1.jpg"
photos[1]="images/warschau_images/warschau2.jpg"
photos[2]="images/warschau_images/warschau3.jpg"
photos[3]="images/warschau_images/warschau4.jpg"
photos[4]="images/warschau_images/warschau5.jpg"
photos[5]="images/warschau_images/warschau6.jpg"
photos[6]="images/warschau_images/warschau7.jpg"
photos[7]="images/warschau_images/warschau8.jpg"
photos[8]="images/warschau_images/warschau9.jpg"
photos[9]="images/warschau_images/warschau10.jpg"

function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}

