picWindow = null

function bigPic(trophypic,picwidth,picheight) {
   if (picWindow && !picWindow.closed) {
      picWindow.close()
   }
   leftPos = 0
   if (screen) {
      leftPos = screen.width - picwidth - 20
      }
   picWindow = window.open(trophypic, "CloserView", "width="+picwidth+",height="+picheight+",left="+leftPos+",top=0")
   picWindow.focus()
}


