	// Basic framework javascript

 function openWindow(image) {
 
  // create a variable to hold all the options you can change
  var windowOptions = "location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width=600,height=600,resizeable=yes";
 
  // create a new instance of the window with the name newWindow so we can write to it
  var newWindow = open('','WindowDemonstration',windowOptions);
  newWindow.document.write("<html>");
  newWindow.document.write("<head><title>Rockfish Photos</title></head>");
  newWindow.document.write("<body bgcolor='#CCCC99'>");
  newWindow.document.write("<table border='0' cellpadding='0' cellspacing='0' align='center'>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write("<img src='"+image+"' border='0'>");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write("&nbsp;");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td align='center'>");
  newWindow.document.write("<a href='javascript: window.close()'><img src='images/btn_closewindow.gif' border='0'></a>");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("</table>");
  newWindow.document.write("</body>");
  newWindow.document.write("</html>");
 
  // close the stream to the document and bring the window to the front
  newWindow.document.close();
  newWindow.focus();
 }
 
  function showEmployee(image, job, name) {
 
  // create a variable to hold all the options you can change
  var windowOptions = "location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width=600,height=600,resizeable=yes";
 
  // create a new instance of the window with the name newWindow so we can write to it
  var newWindow = open('','WindowDemonstration',windowOptions);
  newWindow.document.write("<html>");
  newWindow.document.write("<head><title>Rockfish Photos</title></head>");
  newWindow.document.write("<body bgcolor='#CCCC99'>");
  newWindow.document.write("<table border='0' cellpadding='0' cellspacing='0' align='center'>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write("<img src='"+image+"' border='0'>");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write("&nbsp;");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write(name);
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write(job);
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td>");
  newWindow.document.write("&nbsp;");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("<tr><td align='center'>");
  newWindow.document.write("<a href='javascript: window.close()'><img src='images/btn_closewindow.gif' border='0'></a>");
  newWindow.document.write("</td></tr>");
  newWindow.document.write("</table>");
  newWindow.document.write("</body>");
  newWindow.document.write("</html>");
 
  // close the stream to the document and bring the window to the front
  newWindow.document.close();
  newWindow.focus();
 }