<!-- Hide the script from old browsers.
//Popup image in a new window, 2001.

function showImg(image,caption,x,y)

  {
    x+=100;
    y+=150;
    /* Window code here */

win="width="+x+",height="+y+"toolbar=no,location=no,directories=no,status=no,menubar=no,resizable='no'";
winTitle="<html>\n<head>\n<title>Birdflesh<\/title>\n<link rel='stylesheet' type='text/css' href='birdpop.css'>\n<\/head>\n";
winBody="<body  onLoad=self.focus() marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0>\n\n";
winImage="<p>\n<div align='center'><img src="+image+" onClick=self.close() title='Click to close' class='imgbox'><\/img>\n<br><br>"+caption+"<\/p></div>\n";
winClose="<p>\n<div align='center'><a href onClick=self.close()>[ Close Window ]<\/a></div>\n<\/p><br>\n<\/body>\n<\/html>";
/* Popup code here */

      newWin=window.open('','popup',win);
      if(newWin.document != null) {
      newWin.resizeTo(x,y);
      newWin.document.write(winTitle+winBody+winImage+winClose)
      newWin.document.close()
    }
  }
//  stop hiding-->