<!-- hide this script from old browsers
 
// This script opens a new browser window and writes
// HTML to display an image with a title and caption
 
function show_photo( pFileName , pTitle) {
 
// specify window parameters
  photoWin = window.open( "", "photo", "status=no,scrollbars=no,resizable,screenX=20,screenY=40,left=20,top=40");
 
// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>'); 
  photoWin.document.write('<SCRIPT LANGUAGE=JavaScript>function adapt () { var image = document.images.FullImage; window.resizeTo(image.width,image.height); if(document.body && document.body.clientWidth) window.resizeBy( image.width - document.body.clientWidth,image.height - document.body.clientHeight) }</SCRIPT>');
  photoWin.document.write('<BODY BGCOLOR="#FFFFFF" TEXT="#FFFFCC" LINK="#33CCFF" VLINK="#FF6666" topmargin="0" leftmargin="0">');
  photoWin.document.write('<img name="FullImage" src="' + pFileName + '" onLoad="adapt()"></body></html>');
  photoWin.document.close(); 
 
// If we are on NetScape, we can bring the window to the front
if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
 
}
 
// done hiding from old browsers -->
