// JavaScript Document
function newWindow(largewin) {
	if (window.screen.width >= 1024){		
	largeWindow = window.open(largewin, "newWin", "width=650,height=575,left=175,top=70")
	largeWindow.focus()
	}
else {
	largeWindow = window.open(largewin, "newWin", "width=650,height=575,left=50,top=20")
	largeWindow.focus()
}
}

// Men's Fellowship Photos
  var picURL = new Array()
  
  picURL[0] = "javascript:newWindow('pictures/mens_fellowship/1.htm')"
  picURL[1] = "javascript:newWindow('pictures/mens_fellowship/2.htm')"
  picURL[2] = "javascript:newWindow('pictures/mens_fellowship/3.htm')"
  picURL[3] = "javascript:newWindow('pictures/mens_fellowship/4.htm')"
  picURL[4] = "javascript:newWindow('pictures/mens_fellowship/5.htm')"
  picURL[5] = "javascript:newWindow('pictures/mens_fellowship/6.htm')"
  picURL[6] = "javascript:newWindow('pictures/mens_fellowship/7.htm')"
  picURL[7] = "javascript:newWindow('pictures/mens_fellowship/8.htm')"
  

function newLink(addone) {
	if (document.images) {
var thisURL = 0
		thisURL = thisURL + addone
		window.location = picURL[thisURL]
	}
}

// Couples' Fellowship Photos
  var imgURL = new Array()
  
  imgURL[0] = "javascript:newWindow('pictures/couples_fellowship/1.htm')"
  imgURL[1] = "javascript:newWindow('pictures/couples_fellowship/2.htm')"
  imgURL[2] = "javascript:newWindow('pictures/couples_fellowship/3.htm')"
  imgURL[3] = "javascript:newWindow('pictures/couples_fellowship/4.htm')"
  imgURL[4] = "javascript:newWindow('pictures/couples_fellowship/5.htm')"
  imgURL[5] = "javascript:newWindow('pictures/couples_fellowship/6.htm')"
  

function imgLink(addone) {
	if (document.images) {
var cURL = 0
		cURL = cURL + addone
		window.location = imgURL[cURL]
	}
}

// Fall Festival Photos
  var ffURL = new Array()
  
  ffURL[0] = "javascript:newWindow('pictures/fall_festival/1.htm')"
  ffURL[1] = "javascript:newWindow('pictures/fall_festival/2.htm')"
  ffURL[2] = "javascript:newWindow('pictures/fall_festival/3.htm')"
  ffURL[3] = "javascript:newWindow('pictures/fall_festival/4.htm')"
  ffURL[4] = "javascript:newWindow('pictures/fall_festival/5.htm')"
  ffURL[5] = "javascript:newWindow('pictures/fall_festival/6.htm')"
  

function ffLink(addone) {
	if (document.images) {
var festURL = 0
		festURL = festURL + addone
		window.location = ffURL[festURL]
	}
}
