<!--

var pop = new Array()
	pop[0] = "1.jpg"
	pop[1] = "2.jpg"
	pop[2] = "3.jpg"
	pop[3] = "4.jpg"
	pop[4] = "7.jpg"
	pop[5] = "9.jpg"
	pop[6] = "10.jpg"
	pop[7] = "11.jpg"
	pop[8] = "12.jpg"
	pop[9] = "13.jpg"
	pop[10] = "14.jpg"
	pop[11] = "15.jpg"
	pop[12] = "16.jpg"
	pop[13] = "a.jpg"
	pop[14] = "b.jpg"
	pop[15] = "d.jpg"
var currentpic = 0

var popwin = null

function about() {
	if (!popwin || popwin.closed){
		popwin=window.open("","popup","width=350,height=350,top=300,left=600,status=yes")
		}
	else {
		popwin.focus()
		}
	}

function next(){
	if(currentpic==15){
		currentpic= -1
		}
	currentpic += 1
	document.poppic.src="glass/" + pop[currentpic]
	}
function previous(){
	if (currentpic==0){
		currentpic=16
		}
	currentpic -= 1
	document.poppic.src="glass/" + pop[currentpic]
	}
function pick(){
	var chosen = document.show.choose.selectedIndex
	document.poppic.src="glass/" + pop[chosen]
	currentpic=chosen   //readjusts the next and previous buttons for current picture
	}
// -->