<script language="JavaScript1.1"> var photos=new Array() var text=new Array() var which=0 var what=0 //Change the below variables to reference your own images. You may have as many images in the slider as you wish photos[0]="/images/archived/2001_February_2001_February_waterloo1.jpeg" photos[1]="/images/archived/2001_February_waterloo2.jpeg" photos[2]="/images/archived/2001_February_waterloo3.jpeg" photos[3]="/images/archived/2001_February_waterloo4.jpeg" photos[4]="/images/archived/2001_February_waterloo5.jpeg" photos[5]="/images/archived/2001_February_waterloo6.jpeg" photos[6]="/images/archived/2001_February_waterloo7.jpeg" //change coresponding description text[0]="General Synod's opening service will be held at St. Michael's Roman Catholic Church, which features a figure of St. Michael in a dramatic stained-glass window over the entrance." text[1]="The Waterloo Recreation Complex's arena." text[2]="A joint Lutheran-Anglican service will be held in the 4,500-seat arena." text[3]="A Bavarian-style musical clock serves as a landmark for Oktoberfest in Waterloo." text[4]="Delegates will gather for meetings at the university's Physical Activities Complex." text[5]="Delegates will stay in dormitory accommodations at Ron Eydt Village student housing." text[6]="General Synod's main sessions will be held in the activity complex's huge gymnasium." window.onload=new Function("document.rotater.description.value=text[0]") function backward(){ if (which>0){ window.status='' which-- document.images.photoslider.src=photos[which]; what-- document.rotater.description.value=text[what]; } } function forward(){ if (which<photos.length-1){ which++ document.images.photoslider.src=photos[which] what++ document.rotater.description.value=text[what]; } else window.status='End of album click on start over or previous button.' } function type() { alert("This textbox will only display default comments") } </script>

|
<form method="POST" name="rotater">
<textarea cols="50" rows="2" name="description" wrap="hard" style="background-color: #CBD9B9;"></textarea>
<input type="button" value="<<Back" name="B2" onClick="backward()"> <input type="button" value="Next>>" name="B1" onClick="forward()"> <small>Start Over</small> </form> |