function enlarge(y)
      {
OpenWindow=window.open("", "newwin", "height=655, width=910,toolbar=no,scrollbars=yes,menubar=no,status=no,resizable=yes,left=50,top=50");
OpenWindow.document.write("<head><link rel='stylesheet' type='text/css' href='standard.css'>")
OpenWindow.document.write("<TITLE>Enlarged Image</TITLE></head>")
OpenWindow.document.write("<BODY BGCOLOR=#303030 leftmargin=0 topmargin=0>")
OpenWindow.document.write("<script language='JavaScript' type='text/JavaScript'>")
OpenWindow.document.write("dir = 'photography/main/';")
OpenWindow.document.write("numImages = 3;")
OpenWindow.document.write("curImage = " + [y] + ";")
OpenWindow.document.write("function changeimg(x) {")
OpenWindow.document.write("curImage = curImage + x;")
OpenWindow.document.write("if (curImage > numImages)")
OpenWindow.document.write("{ curImage = 1 ; }")
OpenWindow.document.write("if (curImage == 0)")
OpenWindow.document.write("{ curImage = numImages ; }")
OpenWindow.document.write("document.image1.src = dir + curImage + '.gif';")
OpenWindow.document.write("}")
OpenWindow.document.write("</script>")
OpenWindow.document.write("<table height=100% width=100%><tr><td align=center valign=center>")
OpenWindow.document.write("<a href='javascript:changeimg(-1)'>previous</a> - Images - <a href='javascript:changeimg(1)'>next</a>")
OpenWindow.document.write("<br><img name='image1' border='0' src=\"photography/main/" + [y] + ".gif\">")
OpenWindow.document.write("<br><a href=\"javascript:window.close()\">close</a>")
OpenWindow.document.write("</td></tr></table>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
self.name="main"
     }