function popupWin(photoName,imgHeight){
  myWin = window.open("bigphoto.html", "photoWindow", "height=" + imgHeight + ",width=570,scrollbars=auto,menubar=no");
  myWin.document.write("<HTML>");
  myWin.document.write("<BODY>");
  myWin.document.write("<CENTER>");
  myWin.document.write("<IMG SRC='" + photoName + "' BORDER='0'><BR>");
  myWin.document.write("<FONT FACE=Arial,Verdana SIZE=2><A HREF=javascript:void(null); OnClick=window.close()><SPAN STYLE=COLOR:#E9063C>Close Window</SPAN></A></FONT><BR>");
  myWin.document.write("</CENTER>");
  myWin.document.write("</BODY>");
  myWin.document.write("</HTML>");
}