function myWinOpen (photoNumber) {  imageOutof (photoNumber)  getPhotoInfo (photoNumber)  windowInnerHeight = photoHeight + 84  windowInnerWidth = photoWidth + 35  myWindow = window.open("", "photoWindow" +photoNumber,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=" + windowInnerHeight + ",width=" + windowInnerWidth);var theName = navigator.appNameif (theName == "Netscape") {  myWindow.document.write ("<head><title>" + photoTitle + "</title></head><body bgcolor='#FFFDFA'><center><img src='" + photoFilename + ".jpeg' border=2 height=" + photoHeight + " width=" + photoWidth + "></center><p><center><a href=' ' onClick='self.close()'><img src='../CommonImages/closeButton.jpeg' border=0 height=50 width=145></a></center></body>")  }  else {  myWindow.document.write ("<head><title>" + photoTitle + "</title></head><body bgcolor='#FFFDFA'><center><img src='" + photoFilename + ".jpeg' border=2 height=" + photoHeight + " width=" + photoWidth + "></center></body>")  }  return (false)}
