function enlarge(image) {
	var extension = ""


	if (image.substring(0,3) == "gif") {
		extension = ".gif"
		image = image.substring(4,image.length)
	} else
		extension = ".jpg";

	var heightText = "document.images['" + image + "'].height"
	var widthText = "document.images['" + image + "'].width"
	var h = (eval(heightText) * 4) - 2
	var w = (eval(widthText) * 4)
	var opts = "width=" + w + ",height=" + h

	nW = window.open("", "Image"+image, opts)
	nW.document.write("<html><head><title>Loading image. One moment, please.</title></head>")
	nW.document.write("<body TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 onBlur='self.close()'>")
	nW.document.write("<img src='./images/"+image+extension+"'></body></html>")
	nW.document.close()
	nW.focus()
}
