
/* author: Garry Conway */
/* creation date: 6/16/04 */


function imageWindow(photo){
photoWindow = window.open("","photoWindow","left=50,top=10,,scrollbars=yes,resizable=yes,width=800, height=700");
photoWindow.document.write("<HTML><HEAD><TITLE>PhotoWindow</TITLE></HEAD>");
photoWindow.document.writeln("<BODY BGCOLOR=#504F2B><Table  WIDTH=100% HEIGHT=100%><tr ><td align=center valign=middle>");
photoWindow.document.writeln("<img src=\""+photo+"\">");
photoWindow.document.writeln("<br><font face=arial size=-1 color=#ffffff>Arts Society King</font>");
photoWindow.document.writeln("<br><br><FORM><INPUT TYPE=\"BUTTON\" VALUE=\"close\" onClick=\"self.close()\">");
photoWindow.document.writeln("</FORM>");
photoWindow.document.writeln("</tr></td></table></BODY></HTML>");
photoWindow.document.close();
photoWindow.focus();
}
//-->