<!--begin/* Function to open image in new window */var newWindowfunction loadImage(imageName) {	newWindow = window.open ("","","status,scrollbars,resizable,width=800,height=600")var HTML = "<html><head><title>Spiral Q Photo Gallery: "	HTML += imageName	HTML += "</title></head>"	HTML += "<body bgcolor='#FFFFFF' text='#999999'><table width=100% height=100%>"	HTML += "<tr><td align='center' valign='center'><a href='#' onClick='javascript:window.close()'>"	HTML += "<img border=0 src='photos/"	HTML += imageName	HTML += "'></a></td>"	HTML += "<tr><td align='center' valign='bottom'><font face='verdana' , 'arial' , 'helvetica' size=2>"	HTML += "Click image to close window.</td></table></body></html>"newWindow.document.write(HTML)newWindow.document.close()}