var imageWindow;

function DisplayPhotograph(galleryID,imageID)
  {
  //
  //  Displays the image
  //
  imageWindow = window.open("display-image.php?gallery=" + galleryID +"&image=" + imageID, "imagewindow","height=700,width=650,scrollbars=1,resizable=1"); 
  imageWindow.focus();
  }  
