﻿  //JavaScript Display Pictures
  //
  function display_fish(link,name) {

    selection = link;

    myWindow = window.open("","Fishing_Photo","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=840,height=720");
    myWindow.document.open();
    myWindow.document.write("<HTML><HEAD>");
    myWindow.document.write("<TITLE>Fishing Photo</TITLE>");
    myWindow.document.write("</HEAD><body background='images/bkg-water-8.jpg' TEXT=000000>");
    myWindow.document.write("<center>" + "<IMG SRC='images/" + selection + "'>" + "</center>");
    myWindow.document.write("<HR><center>" + "<b><font size=2 face=arial,sans-serif style='font:bold 11pt;'>" + name + "</font>" + "    " + "</center>");
    myWindow.document.write("<CENTER>");
    myWindow.document.write("<FORM><INPUT TYPE='button' VALUE='Close' " + "onClick='window.close()'></FORM>");
    myWindow.document.write("</CENTER>");
    myWindow.document.write("</BODY></HTML>");
    myWindow.document.close();
  }