function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=435,height=230');");
}

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'
}

function jump(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}