
function LargePage(thisImage){


	newWindow = window.open('','fullPage','toolbar=no,location=no,scrollbars=yes,resizable=yes,status=yes,menubar=no')
	newWindow.moveTo(0,0)
	newWindow.resizeTo(825,625)
	myPictWidth = (screen.Width-25)
	newWindow.document.write("<HTML><HEAD><TITLE>Large Picture<\/TITLE>")
	newWindow.document.write("<SCRIPT LANGUAGE=JAVASCRIPT TYPE=\"TEXT/JAVASCRIPT\">")
	newWindow.document.write("function closeWindow(){")
	newWindow.document.write("self.close()")
	newWindow.document.write("}<\/SCRIPT>")
	newWindow.document.write("<\/HEAD><BODY>")
	newWindow.document.write("<CENTER>")
	newWindow.document.write("<FONT SIZE=+1>")
	newWindow.document.write("<A HREF=\"javascript:closeWindow()\">Close this Window<\/A>")
	newWindow.document.write("<BR>")
	newWindow.document.write("<IMG SRC =\"images/large/" + thisImage + ".jpg\"")
	newWindow.document.write(" NAME=\"thisPic1\" BORDER=0>")
	newWindow.document.write("<BR>")
	newWindow.document.write("<A HREF=\"javascript:closeWindow()\">Close this Window<\/A>")
	newWindow.document.write("<\/CENTER>")
	newWindow.document.write("<\/BODY><\/HTML>")

	if (newWindow.document.thisPic1.width > myPictWidth){
		newWindow.document.thisPic1.width = myPictWidth
	}
	
}


	
